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

Unified Diff: LayoutTests/fast/dom/wrapper-classes-expected.txt

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
« no previous file with comments | « LayoutTests/fast/dom/wrapper-classes.html ('k') | Source/core/dom/Document.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/wrapper-classes-expected.txt
diff --git a/LayoutTests/fast/dom/wrapper-classes-expected.txt b/LayoutTests/fast/dom/wrapper-classes-expected.txt
index 26ac59b8907ee8ae04a086c4135b151e12742bb2..10401a39eedfd637e8e170b201b97eed2179afde 100644
--- a/LayoutTests/fast/dom/wrapper-classes-expected.txt
+++ b/LayoutTests/fast/dom/wrapper-classes-expected.txt
@@ -8,10 +8,10 @@ PASS successfullyParsed is true
TEST COMPLETE
Basics
-PASS classString(document.createAttribute()) is "Attr"
-FAIL classString(document.createAttribute().__proto__) should be AttrPrototype. Was Object.
-PASS classString(document.createAttribute().constructor) is "Function"
-PASS document.createAttribute().constructor.name is "Attr"
+PASS classString(document.createAttribute('x')) is "Attr"
+FAIL classString(document.createAttribute('x').__proto__) should be AttrPrototype. Was Object.
+PASS classString(document.createAttribute('x').constructor) is "Function"
+PASS document.createAttribute('x').constructor.name is "Attr"
PASS classString(document.createComment('')) is "Comment"
FAIL classString(document.createComment('').__proto__) should be CommentPrototype. Was Object.
PASS classString(document.createComment('').constructor) is "Function"
@@ -55,10 +55,10 @@ PASS classString(xmlDocument) is "XMLDocument"
FAIL classString(xmlDocument.__proto__) should be XMLDocumentPrototype. Was Object.
PASS classString(xmlDocument.constructor) is "Function"
PASS xmlDocument.constructor.name is "XMLDocument"
-PASS classString(xmlDocument.createCDATASection()) is "CDATASection"
-FAIL classString(xmlDocument.createCDATASection().__proto__) should be CDATASectionPrototype. Was Object.
-PASS classString(xmlDocument.createCDATASection().constructor) is "Function"
-PASS xmlDocument.createCDATASection().constructor.name is "CDATASection"
+PASS classString(xmlDocument.createCDATASection('')) is "CDATASection"
+FAIL classString(xmlDocument.createCDATASection('').__proto__) should be CDATASectionPrototype. Was Object.
+PASS classString(xmlDocument.createCDATASection('').constructor) is "Function"
+PASS xmlDocument.createCDATASection('').constructor.name is "CDATASection"
PASS classString(xmlDocument.createElementNS('x', 'x', 'x')) is "Element"
FAIL classString(xmlDocument.createElementNS('x', 'x', 'x').__proto__) should be ElementPrototype. Was Object.
PASS classString(xmlDocument.createElementNS('x', 'x', 'x').constructor) is "Function"
« no previous file with comments | « LayoutTests/fast/dom/wrapper-classes.html ('k') | Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698