RESOLVED FIXED 146566
REGRESSION (r178097): HTMLSelectElement.add(option, undefined) prepends option to the list of options; should append to the end of the list of options
https://bugs.webkit.org/show_bug.cgi?id=146566
Summary REGRESSION (r178097): HTMLSelectElement.add(option, undefined) prepends optio...
Daniel Bates
Reported 2015-07-02 17:41:32 PDT
Following the change made in bug #139179 (http://trac.webkit.org/changeset/178097), calling HTMLSelectElement.add(O, undefined) prepends O to the list of options where O is either an HTML option element or an HTML optgroup element. But it should append O to the end of the list of options.
Attachments
Example (585 bytes, text/html)
2015-07-02 17:45 PDT, Daniel Bates
no flags
Patch (21.50 KB, patch)
2015-07-03 11:22 PDT, Chris Dumez
no flags
Patch (20.68 KB, patch)
2015-07-03 14:03 PDT, Chris Dumez
no flags
Archive of layout-test-results from ews102 for mac-mavericks (535.31 KB, application/zip)
2015-07-03 14:42 PDT, Build Bot
no flags
Patch (21.56 KB, patch)
2015-07-03 14:44 PDT, Chris Dumez
no flags
Daniel Bates
Comment 1 2015-07-02 17:45:56 PDT
Radar WebKit Bug Importer
Comment 2 2015-07-02 17:49:42 PDT
Chris Dumez
Comment 3 2015-07-02 20:18:57 PDT
Relevant specs: https://html.spec.whatwg.org/multipage/forms.html#dom-select-add which points to: https://html.spec.whatwg.org/multipage/infrastructure.html#dom-htmloptionscollection-add which says in this case to call the DOM insertBefore() method on the parent node, with element as the first argument and null (in our case) as the second argument. https://dom.spec.whatwg.org/#dom-node-insertbefore -> https://dom.spec.whatwg.org/#concept-node-insert " For each newNode in nodes, in tree order, run these substeps: 1. Insert newNode into parent before child or at the end of parent if child is null. 2. Run the insertion steps with newNode. " Ok, so even though it is hard to follow, the spec does say to insert "at the end of parent if child is null".
Chris Dumez
Comment 4 2015-07-03 11:22:48 PDT
Chris Dumez
Comment 5 2015-07-03 14:03:32 PDT
Build Bot
Comment 6 2015-07-03 14:42:47 PDT
Comment on attachment 256120 [details] Patch Attachment 256120 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/4714810553925632 New failing tests: fast/dom/HTMLSelectElement/add.html
Build Bot
Comment 7 2015-07-03 14:42:50 PDT
Created attachment 256122 [details] Archive of layout-test-results from ews102 for mac-mavericks The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-mavericks Platform: Mac OS X 10.9.5
Chris Dumez
Comment 8 2015-07-03 14:44:03 PDT
WebKit Commit Bot
Comment 9 2015-07-03 20:57:17 PDT
Comment on attachment 256123 [details] Patch Clearing flags on attachment: 256123 Committed r186275: <http://trac.webkit.org/changeset/186275>
WebKit Commit Bot
Comment 10 2015-07-03 20:57:22 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.