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

Unified Diff: LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.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/nodesettextcontent06.js
diff --git a/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js b/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
index 75b6b89264687f0f45c9d8413131ae5c7305182d..5c35ff314a8bf02f1297009268088baa36e98ae5 100644
--- a/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
+++ b/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
@@ -101,7 +101,7 @@ function nodesettextcontent06() {
doc = load(docRef, "doc", "hc_staff");
elem = doc.createElementNS("http://www.w3.org/1999/xhtml","p");
attr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
- attrNode = elem.setAttributeNodeNS(attr);
+ attrNode = elem.setAttributeNode(attr);
attr.textContent = "NA";
textContent = attr.textContent;

Powered by Google App Engine
This is Rietveld 408576698