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

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

Issue 106773003: Make arguments to Document methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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 2d3ca9612ceb16bc028cabaf6be4965923cbc62b..a26d72bba6d52d2836e7f4dd11dedf1edb5df539 100644
--- a/LayoutTests/fast/dom/attribute-downcast-right.html
+++ b/LayoutTests/fast/dom/attribute-downcast-right.html
@@ -3,7 +3,7 @@ if (window.testRunner)
testRunner.dumpAsText();
var oElement = document.createElement("s")
-var oElementNS = document.createElementNS();
+var oElementNS = document.createElementNS("http://example.com/", "example");
oElementNS.setAttributeNS();
var oAttributeNS = oElementNS.getAttributeNodeNS();
var oAttributeNSClone = oAttributeNS.cloneNode();
« no previous file with comments | « LayoutTests/fast/dom/MutationObserver/observe-characterdata.html ('k') | LayoutTests/fast/dom/dom-method-document-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698