Index: LayoutTests/fast/dom/Document/replace-child-expected.txt |
diff --git a/LayoutTests/fast/dom/Document/replace-child-expected.txt b/LayoutTests/fast/dom/Document/replace-child-expected.txt |
index 54c124f74171a6ff7542bb611f299324c08abcb5..aec7339ed65b76d83ae5d01a58b72a00c750c82c 100644 |
--- a/LayoutTests/fast/dom/Document/replace-child-expected.txt |
+++ b/LayoutTests/fast/dom/Document/replace-child-expected.txt |
@@ -12,7 +12,7 @@ PASS doc.replaceChild(fragment, doc.documentElement); did not throw exception. |
<!DOCTYPE html><div/> |
replacing element with multiple elements in fragment |
-PASS doc.replaceChild(fragment, doc.documentElement); threw exception Error: HierarchyRequestError: DOM Exception 3. |
+PASS doc.replaceChild(fragment, doc.documentElement); threw exception HierarchyRequestError: A Node was inserted somewhere it doesn't belong.. |
<!DOCTYPE html><body/> |
replacing element with doctype |
@@ -20,7 +20,7 @@ PASS doc.replaceChild(newChild, doc.documentElement) did not throw exception. |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
replacing element with doctype when a doctype already exists |
-PASS doc.replaceChild(newChild, doc.documentElement) threw exception Error: HierarchyRequestError: DOM Exception 3. |
+PASS doc.replaceChild(newChild, doc.documentElement) threw exception HierarchyRequestError: A Node was inserted somewhere it doesn't belong.. |
<!DOCTYPE html><body/> |
replacing doctype with doctype |
@@ -32,7 +32,7 @@ PASS doc.replaceChild(newChild, doc.doctype) did not throw exception. |
<bar/> |
replacing element with doctype when an element already exists |
-PASS doc.replaceChild(newChild, doc.documentElement) threw exception Error: HierarchyRequestError: DOM Exception 3. |
+PASS doc.replaceChild(newChild, doc.documentElement) threw exception HierarchyRequestError: A Node was inserted somewhere it doesn't belong.. |
<!DOCTYPE html><body/> |
PASS successfullyParsed is true |