Index: LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception-expected.txt |
diff --git a/LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception-expected.txt b/LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception-expected.txt |
index 30408856d454444ed9070cdc8db7048c8db13a49..b1ada395e138cfc3e4c1efd65ed49a90b2b7eda5 100644 |
--- a/LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception-expected.txt |
+++ b/LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception-expected.txt |
@@ -1,19 +1,19 @@ |
This tests XMLSerializer.serializeToString() throwing exception when node value is invalid and passing otherwise. |
1. Verifying XMLSerializer.serializeToString() should THROW exception with node value = null |
-Exception thrown = [TypeError: Invalid node value.] |
+Exception thrown = [TypeError: Failed to execute 'serializeToString' on 'XMLSerializer': Invalid node value.] |
PASS |
2. Verifying XMLSerializer.serializeToString() should THROW exception with node value = undefined |
-Exception thrown = [TypeError: Invalid node value.] |
+Exception thrown = [TypeError: Failed to execute 'serializeToString' on 'XMLSerializer': Invalid node value.] |
PASS |
3. Verifying XMLSerializer.serializeToString() should THROW exception with node value = <html><title>Hello World</title></html> |
-Exception thrown = [TypeError: Invalid node value.] |
+Exception thrown = [TypeError: Failed to execute 'serializeToString' on 'XMLSerializer': Invalid node value.] |
PASS |
4. Verifying XMLSerializer.serializeToString() should THROW exception with node value = [object HTMLCollection] |
-Exception thrown = [TypeError: Invalid node value.] |
+Exception thrown = [TypeError: Failed to execute 'serializeToString' on 'XMLSerializer': Invalid node value.] |
PASS |
5. Verifying XMLSerializer.serializeToString() should NOT-THROW exception with node value = [object HTMLDocument] |