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

Unified Diff: LayoutTests/fast/dom/attribute-downcast-right.html

Issue 105883012: Make arguments to Element methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/attribute-downcast-right.html
diff --git a/LayoutTests/fast/dom/attribute-downcast-right.html b/LayoutTests/fast/dom/attribute-downcast-right.html
index a26d72bba6d52d2836e7f4dd11dedf1edb5df539..1a03005513669b42b666cc0b24d3f03629cfde51 100644
--- a/LayoutTests/fast/dom/attribute-downcast-right.html
+++ b/LayoutTests/fast/dom/attribute-downcast-right.html
@@ -4,8 +4,8 @@ if (window.testRunner)
var oElement = document.createElement("s")
var oElementNS = document.createElementNS("http://example.com/", "example");
-oElementNS.setAttributeNS();
-var oAttributeNS = oElementNS.getAttributeNodeNS();
+oElementNS.setAttributeNS("http://example.com/", "example", "");
+var oAttributeNS = oElementNS.getAttributeNodeNS("http://example.com/", "example");
var oAttributeNSClone = oAttributeNS.cloneNode();
oElement.setAttributeNode(oAttributeNSClone);
</SCRIPT>

Powered by Google App Engine
This is Rietveld 408576698