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

Unified Diff: LayoutTests/fast/dom/wrapper-classes.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
« no previous file with comments | « LayoutTests/fast/dom/null-chardata-crash.html ('k') | LayoutTests/fast/dom/wrapper-classes-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/wrapper-classes.html
diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
index 56014cf6ea37f6937c305ff6beeb3a32cf537c03..d460b6bb5431c9099ae9841c4399726d435e1b27 100644
--- a/LayoutTests/fast/dom/wrapper-classes.html
+++ b/LayoutTests/fast/dom/wrapper-classes.html
@@ -79,14 +79,14 @@ function runTest()
debug('');
test("document.createAttribute()", "Attr");
- test("document.createComment()", "Comment");
+ test("document.createComment('')", "Comment");
test("document.createDocumentFragment()", "DocumentFragment");
test("document.implementation", "DOMImplementation");
test("root.attributes", "NamedNodeMap");
test("document.createNodeIterator(root, 0, null, false)", "NodeIterator");
test("document.getElementsByTagName('div')", "NodeList");
test("document.createRange()", "Range");
- test("document.createTextNode()", "Text");
+ test("document.createTextNode('')", "Text");
test("document.createTreeWalker(root, 0, null, false)", "TreeWalker");
debug('');
@@ -96,7 +96,7 @@ function runTest()
test("xmlDocument", "Document");
test("xmlDocument.createCDATASection()", "CDATASection");
test("xmlDocument.createElementNS('x', 'x', 'x')", "Element");
- test("xmlDocument.createProcessingInstruction()", "ProcessingInstruction");
+ test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruction");
debug('');
debug('Events');
« no previous file with comments | « LayoutTests/fast/dom/null-chardata-crash.html ('k') | LayoutTests/fast/dom/wrapper-classes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698