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

Unified Diff: LayoutTests/fast/dom/node-prefix-setter-namespace-exception-expected.txt

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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/node-prefix-setter-namespace-exception-expected.txt
diff --git a/LayoutTests/fast/dom/node-prefix-setter-namespace-exception-expected.txt b/LayoutTests/fast/dom/node-prefix-setter-namespace-exception-expected.txt
index b8619f923b55aff07a51f3925fbee8cb653720c7..500289830a223f0c64c7b4c7e0dc52bedc01e776 100644
--- a/LayoutTests/fast/dom/node-prefix-setter-namespace-exception-expected.txt
+++ b/LayoutTests/fast/dom/node-prefix-setter-namespace-exception-expected.txt
@@ -4,14 +4,14 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS href.prefix is null
-PASS document.createAttribute('attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': No namespace is set, so a namespace prefix may not be set..
-PASS document.createAttributeNS(null, 'attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': No namespace is set, so a namespace prefix may not be set..
-PASS document.createElementNS(null, 'attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': No namespace is set, so a namespace prefix may not be set..
-PASS document.createAttributeNS('foo', 'bar').prefix = 'xml' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': The prefix 'xml' may not be set on namespace 'foo'..
-PASS document.createElementNS('foo', 'bar').prefix = 'xml' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': The prefix 'xml' may not be set on namespace 'foo'..
-PASS document.createAttribute('attr').prefix = 'xmlns' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': No namespace is set, so a namespace prefix may not be set..
+PASS document.createAttribute('attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': No namespace is set, so a namespace prefix may not be set..
+PASS document.createAttributeNS(null, 'attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': No namespace is set, so a namespace prefix may not be set..
+PASS document.createElementNS(null, 'attr').prefix = 'abc' threw exception NamespaceError: Failed to set the 'prefix' property on 'Element': No namespace is set, so a namespace prefix may not be set..
+PASS document.createAttributeNS('foo', 'bar').prefix = 'xml' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': The prefix 'xml' may not be set on namespace 'foo'..
+PASS document.createElementNS('foo', 'bar').prefix = 'xml' threw exception NamespaceError: Failed to set the 'prefix' property on 'Element': The prefix 'xml' may not be set on namespace 'foo'..
+PASS document.createAttribute('attr').prefix = 'xmlns' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': No namespace is set, so a namespace prefix may not be set..
PASS document.createAttributeNS('foo', 'attr').prefix = 'xmlns' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': The prefix 'xmlns' may not be used on the namespace 'foo'..
-PASS document.createAttribute('xmlns').prefix = 'foo' threw exception NamespaceError: Failed to set the 'prefix' property on 'Node': No namespace is set, so a namespace prefix may not be set..
+PASS document.createAttribute('xmlns').prefix = 'foo' threw exception NamespaceError: Failed to set the 'prefix' property on 'Attr': No namespace is set, so a namespace prefix may not be set..
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698