RESOLVED FIXED 148971
Node.appendChild(null) / replaceChild(null, null) / removeChild(null) / insertBefore(null, ref) should throw a TypeError
https://bugs.webkit.org/show_bug.cgi?id=148971
Summary Node.appendChild(null) / replaceChild(null, null) / removeChild(null) / inser...
Chris Dumez
Reported 2015-09-08 11:18:49 PDT
Node.appendChild(null) / replaceChild(null, null) / removeChild(null) / insertBefore(null, ref) should throw a TypeError: https://dom.spec.whatwg.org/#node (parameters are not nullable)
Attachments
WIP Patch (216.92 KB, patch)
2015-09-08 16:50 PDT, Chris Dumez
no flags
Patch (233.24 KB, patch)
2015-09-08 17:08 PDT, Chris Dumez
no flags
Patch (235.58 KB, patch)
2015-09-08 17:26 PDT, Chris Dumez
no flags
Archive of layout-test-results from ews104 for mac-mavericks-wk2 (736.07 KB, application/zip)
2015-09-08 18:32 PDT, Build Bot
no flags
Archive of layout-test-results from ews103 for mac-mavericks (646.02 KB, application/zip)
2015-09-08 18:38 PDT, Build Bot
no flags
Patch (243.89 KB, patch)
2015-09-08 23:17 PDT, Chris Dumez
no flags
Patch (244.59 KB, patch)
2015-09-08 23:35 PDT, Chris Dumez
no flags
Patch (243.13 KB, patch)
2015-09-09 07:57 PDT, Chris Dumez
no flags
Patch (244.14 KB, patch)
2015-09-09 08:25 PDT, Chris Dumez
no flags
Patch (247.16 KB, patch)
2015-09-09 10:09 PDT, Chris Dumez
no flags
Patch (247.06 KB, patch)
2015-09-09 21:49 PDT, Chris Dumez
no flags
Patch (247.34 KB, patch)
2015-09-10 09:25 PDT, Chris Dumez
no flags
Patch (247.29 KB, patch)
2015-09-10 09:44 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2015-09-08 11:19:22 PDT
Chris Dumez
Comment 2 2015-09-08 11:20:30 PDT
Chris Dumez
Comment 3 2015-09-08 16:50:48 PDT
Created attachment 260811 [details] WIP Patch
WebKit Commit Bot
Comment 4 2015-09-08 16:52:52 PDT
Attachment 260811 [details] did not pass style-queue: ERROR: Source/WebCore/dom/Element.cpp:324: More than one command on the same line [whitespace/newline] [4] Total errors found: 1 in 117 files If any of these errors are false positives, please file a bug against check-webkit-style.
Chris Dumez
Comment 5 2015-09-08 17:08:54 PDT
Chris Dumez
Comment 6 2015-09-08 17:26:26 PDT
Build Bot
Comment 7 2015-09-08 18:32:11 PDT
Comment on attachment 260818 [details] Patch Attachment 260818 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.webkit.org/results/152475 New failing tests: js/dom/dot-node-base-exception.html
Build Bot
Comment 8 2015-09-08 18:32:15 PDT
Created attachment 260822 [details] Archive of layout-test-results from ews104 for mac-mavericks-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-mavericks-wk2 Platform: Mac OS X 10.9.5
Build Bot
Comment 9 2015-09-08 18:38:50 PDT
Comment on attachment 260818 [details] Patch Attachment 260818 [details] did not pass mac-ews (mac): Output: http://webkit-queues.webkit.org/results/152514 New failing tests: js/dom/dot-node-base-exception.html fast/events/remove-target-with-shadow-in-drag.html
Build Bot
Comment 10 2015-09-08 18:38:54 PDT
Created attachment 260824 [details] Archive of layout-test-results from ews103 for mac-mavericks The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews103 Port: mac-mavericks Platform: Mac OS X 10.9.5
Chris Dumez
Comment 11 2015-09-08 23:17:14 PDT
Chris Dumez
Comment 12 2015-09-08 23:35:41 PDT
Chris Dumez
Comment 13 2015-09-09 07:57:07 PDT
Chris Dumez
Comment 14 2015-09-09 08:25:39 PDT
Chris Dumez
Comment 15 2015-09-09 10:09:26 PDT
Chris Dumez
Comment 16 2015-09-09 21:49:15 PDT
Ryosuke Niwa
Comment 17 2015-09-10 09:19:17 PDT
Comment on attachment 260908 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=260908&action=review > Source/WebCore/editing/AppendNodeCommand.cpp:38 > -AppendNodeCommand::AppendNodeCommand(PassRefPtr<ContainerNode> parent, PassRefPtr<Node> node, EditAction editingAction) > +AppendNodeCommand::AppendNodeCommand(PassRefPtr<ContainerNode> parent, Node& node, EditAction editingAction) I think this should be Ref<Node>. > Source/WebCore/editing/AppendNodeCommand.h:35 > + static Ref<AppendNodeCommand> create(PassRefPtr<ContainerNode> parent, Node& node, EditAction editingAction) Ditto. > Source/WebCore/editing/AppendNodeCommand.h:41 > - AppendNodeCommand(PassRefPtr<ContainerNode> parent, PassRefPtr<Node>, EditAction); > + AppendNodeCommand(PassRefPtr<ContainerNode> parent, Node&, EditAction); Ditto. > Source/WebCore/editing/RemoveNodeCommand.cpp:37 > +RemoveNodeCommand::RemoveNodeCommand(Node& node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) Ditto. > Source/WebCore/editing/RemoveNodeCommand.h:35 > - static Ref<RemoveNodeCommand> create(PassRefPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) > + static Ref<RemoveNodeCommand> create(Node& node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) Ditto. > Source/WebCore/editing/RemoveNodeCommand.h:41 > - explicit RemoveNodeCommand(PassRefPtr<Node>, ShouldAssumeContentIsAlwaysEditable); > + RemoveNodeCommand(Node&, ShouldAssumeContentIsAlwaysEditable); Ditto. > Source/WebCore/html/track/VTTRegion.h:92 > - PassRefPtr<HTMLDivElement> getDisplayTree(); > + HTMLDivElement& getDisplayTree(); We should use Ref<HTMLDivElement> instead.
Chris Dumez
Comment 18 2015-09-10 09:25:01 PDT
Chris Dumez
Comment 19 2015-09-10 09:44:41 PDT
WebKit Commit Bot
Comment 20 2015-09-10 11:02:27 PDT
Comment on attachment 260931 [details] Patch Clearing flags on attachment: 260931 Committed r189576: <http://trac.webkit.org/changeset/189576>
WebKit Commit Bot
Comment 21 2015-09-10 11:02:39 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.