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

Unified Diff: LayoutTests/dom/xhtml/level3/core/nodelookupprefix16.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/nodelookupprefix16.js
diff --git a/LayoutTests/dom/xhtml/level3/core/nodelookupprefix16.js b/LayoutTests/dom/xhtml/level3/core/nodelookupprefix16.js
index 8a07de86c89b3ae39ab27b2636451ff312fbb77a..4499ad362dc76dd044445967fcb66a2860b885ef 100644
--- a/LayoutTests/dom/xhtml/level3/core/nodelookupprefix16.js
+++ b/LayoutTests/dom/xhtml/level3/core/nodelookupprefix16.js
@@ -98,7 +98,7 @@ function nodelookupprefix16() {
doc = load(docRef, "doc", "barfoo");
elem = doc.createElementNS("http://www.w3.org/1999/xhtml","dom3:p");
attr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
- attNode = elem.setAttributeNodeNS(attr);
+ attNode = elem.setAttributeNode(attr);
prefix = attr.lookupPrefix("http://www.w3.org/XML/1998/namespace");
assertNull("nodelookupprefix16",prefix);

Powered by Google App Engine
This is Rietveld 408576698