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

Unified Diff: LayoutTests/fast/dom/wrapper-classes.html

Issue 737133002: Make arguments to some Document and Element methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase+adapt Created 6 years, 1 month 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/wrapper-classes.html
diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
index 84d6eb79974cb3f927e9d070d09df8f5d00a31ea..b7c5ec38996fa1e2a55f94fccfb1a5d6b518ff8f 100644
--- a/LayoutTests/fast/dom/wrapper-classes.html
+++ b/LayoutTests/fast/dom/wrapper-classes.html
@@ -76,7 +76,7 @@ function runTest()
debug('Basics');
debug('');
- test("document.createAttribute()", "Attr");
+ test("document.createAttribute('x')", "Attr");
test("document.createComment('')", "Comment");
test("document.createDocumentFragment()", "DocumentFragment");
test("document.implementation", "DOMImplementation");
@@ -92,7 +92,7 @@ function runTest()
debug('');
test("xmlDocument", "XMLDocument");
- test("xmlDocument.createCDATASection()", "CDATASection");
+ test("xmlDocument.createCDATASection('')", "CDATASection");
test("xmlDocument.createElementNS('x', 'x', 'x')", "Element");
test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruction");
« no previous file with comments | « LayoutTests/fast/dom/Element/missing-arguments-expected.txt ('k') | LayoutTests/fast/dom/wrapper-classes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698