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

Unified Diff: LayoutTests/fast/dom/dom-method-document-change.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/dom-method-document-change.html
diff --git a/LayoutTests/fast/dom/dom-method-document-change.html b/LayoutTests/fast/dom/dom-method-document-change.html
index 2ee7fcdd5e5ddc7555337e7537d05762b5c258d0..94e922a51d76f79eac0f8f0336c4264fede89d1d 100644
--- a/LayoutTests/fast/dom/dom-method-document-change.html
+++ b/LayoutTests/fast/dom/dom-method-document-change.html
@@ -17,11 +17,11 @@ showFailure = function(s)
window.onload = function()
{
- element1 = document.createElement();
- element2 = document.createElement();
- element3 = document.createElement();
- parent = document.createElement();
- dummy = document.createElement();
+ element1 = document.createElement("x");
+ element2 = document.createElement("x");
+ element3 = document.createElement("x");
+ parent = document.createElement("x");
+ dummy = document.createElement("x");
doc = document.implementation.createHTMLDocument();
« no previous file with comments | « LayoutTests/fast/dom/attribute-downcast-right.html ('k') | LayoutTests/fast/dom/getElementsByClassName/dumpNodeList.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698