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

Unified Diff: LayoutTests/fast/dom/Node/initial-values-expected.txt

Issue 740223003: Revive tests for Document.createAttributeNS() and Element.setAttributeNodeNS() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: deprecation messages Created 6 years, 1 month 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/initial-values-expected.txt
diff --git a/LayoutTests/fast/dom/Node/initial-values-expected.txt b/LayoutTests/fast/dom/Node/initial-values-expected.txt
index dd7bb463ce4f728f11afb56ad79325ba9e7f779d..f52f0ba8c7322aec20e93dc538512b1790021d28 100644
--- a/LayoutTests/fast/dom/Node/initial-values-expected.txt
+++ b/LayoutTests/fast/dom/Node/initial-values-expected.txt
@@ -10,6 +10,14 @@ FAIL attr.localName should be null (of type object). Was foo (of type string).
PASS attr.namespaceURI is null
PASS attr.prefix is null
PASS attr.value is ''
+Attribute creation using createElementNS on an HTML doc:
+PASS attr.nodeName is 'example:foo'
+PASS attr.name is 'example:foo'
+PASS attr.localName is 'foo'
+PASS attr.namespaceURI is 'http://www.example.com'
+PASS attr.prefix is 'example'
+PASS attr.nodeValue is ''
+PASS attr.value is ''
Attribute creation using createElement on an XHTML doc:
PASS attr.nodeName is 'foo'
PASS attr.name is 'foo'
@@ -17,6 +25,14 @@ FAIL attr.localName should be null (of type object). Was foo (of type string).
PASS attr.namespaceURI is null
PASS attr.prefix is null
PASS attr.value is ''
+Attribute creation using createElementNS on an XHTML doc:
+PASS attr.nodeName is 'example:foo'
+PASS attr.name is 'example:foo'
+PASS attr.localName is 'foo'
+PASS attr.namespaceURI is 'http://www.example.com'
+PASS attr.prefix is 'example'
+PASS attr.nodeValue is ''
+PASS attr.value is ''
PASS comment.nodeName is '#comment'
PASS comment.localName is null
PASS comment.namespaceURI is null

Powered by Google App Engine
This is Rietveld 408576698