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

Unified Diff: LayoutTests/fast/events/mutation-during-append-child.html

Issue 24982002: Clean up ContainerNode exception messages. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline. Created 7 years, 3 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/events/mutation-during-append-child.html
diff --git a/LayoutTests/fast/events/mutation-during-append-child.html b/LayoutTests/fast/events/mutation-during-append-child.html
index cc86c2b0169260eeab78a3414a42957bad90d09d..2e831fd2dd3f119241d4a71d93b82c1d02508f4a 100644
--- a/LayoutTests/fast/events/mutation-during-append-child.html
+++ b/LayoutTests/fast/events/mutation-during-append-child.html
@@ -16,7 +16,7 @@ var listener = function() {
child.appendChild(newparent);
};
document.addEventListener("DOMNodeRemoved", listener, false);
-shouldThrow("newparent.appendChild(child);", '"HierarchyRequestError: Failed to execute \'appendChild\' on \'ContainerNode\': The new child element contains the parent."');
+shouldThrow("newparent.appendChild(child);", '"HierarchyRequestError: Failed to execute \'appendChild\' on \'Node\': The new child element contains the parent."');
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>

Powered by Google App Engine
This is Rietveld 408576698