Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(818)

Unified Diff: LayoutTests/fast/dom/incompatible-operations-expected.txt

Issue 374093002: Node.appendChild should throw TypeError when newChild is not an object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/incompatible-operations-expected.txt
diff --git a/LayoutTests/fast/dom/incompatible-operations-expected.txt b/LayoutTests/fast/dom/incompatible-operations-expected.txt
index dd27a04ef27bad85eaa973bfd18c36f3dd1d048e..f582a0ee9f2aad6caa52476fa7ff19d910940a45 100644
--- a/LayoutTests/fast/dom/incompatible-operations-expected.txt
+++ b/LayoutTests/fast/dom/incompatible-operations-expected.txt
@@ -4,8 +4,8 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS aNode.appendChild(aDOMImplementation) threw exception NotFoundError: Failed to execute 'appendChild' on 'Node': The new child element is null..
-PASS aNode.appendChild('knort') threw exception NotFoundError: Failed to execute 'appendChild' on 'Node': The new child element is null..
-PASS aNode.appendChild(void 0) threw exception NotFoundError: Failed to execute 'appendChild' on 'Node': The new child element is null..
+PASS aNode.appendChild('knort') threw exception TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 ('newChild') is not an object..
+PASS aNode.appendChild(void 0) threw exception TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 ('newChild') is not an object..
PASS aNode.isSameNode(aDOMImplementation) is false
PASS aNode.isSameNode('foo') is false
PASS aNode.isSameNode(void 0) is false

Powered by Google App Engine
This is Rietveld 408576698