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

Unified Diff: LayoutTests/fast/dom/serialize-nodes.xhtml

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/serialize-nodes.xhtml
diff --git a/LayoutTests/fast/dom/serialize-nodes.xhtml b/LayoutTests/fast/dom/serialize-nodes.xhtml
index 6e77e2bc12b35da2d86c6bb84c865f8c0f5eebc3..ae4791dc8b44d631b4556a66c9d2df4f65d34ee0 100644
--- a/LayoutTests/fast/dom/serialize-nodes.xhtml
+++ b/LayoutTests/fast/dom/serialize-nodes.xhtml
@@ -27,7 +27,7 @@ window.addEventListener("load", function() {
c.setAttributeNS("urn:foo-ns", "foo:name", "one");
c.setAttributeNS("urn:bar-ns", "bar:name", "two");
- var attr = d.createAttribute("name");
+ var attr = d.createAttributeNS(null, "name");
var text = d.createTextNode("three");
attr.appendChild(text);
c.setAttributeNode(attr);

Powered by Google App Engine
This is Rietveld 408576698