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

Unified Diff: LayoutTests/dom/xhtml/level3/core/nodegettextcontent08.js

Issue 143173003: Remove unused feature ElementSetAttributeNodeNS (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed failing test case expectation Created 6 years, 10 months 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/dom/xhtml/level3/core/nodegettextcontent08.js
diff --git a/LayoutTests/dom/xhtml/level3/core/nodegettextcontent08.js b/LayoutTests/dom/xhtml/level3/core/nodegettextcontent08.js
index d34f5aada22d155fe5be625028975f0e4d9c0aa6..91c046d4d9b47b31818cd59b7c2b8ff624ef4261 100644
--- a/LayoutTests/dom/xhtml/level3/core/nodegettextcontent08.js
+++ b/LayoutTests/dom/xhtml/level3/core/nodegettextcontent08.js
@@ -100,7 +100,7 @@ function nodegettextcontent08() {
doc = load(docRef, "doc", "barfoo");
elem = doc.createElementNS("http://www.w3.org/1999/xhtml","p");
att = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
- replacedAttr = elem.setAttributeNodeNS(att);
+ replacedAttr = elem.setAttributeNode(att);
attr = elem.getAttributeNodeNS("http://www.w3.org/XML/1998/namespace","lang");
textContent = attr.textContent;

Powered by Google App Engine
This is Rietveld 408576698