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

Unified Diff: LayoutTests/fast/inspector-support/uncaught-dom1-exception.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/inspector-support/uncaught-dom1-exception.html
diff --git a/LayoutTests/fast/inspector-support/uncaught-dom1-exception.html b/LayoutTests/fast/inspector-support/uncaught-dom1-exception.html
index d35653214b4846cce292a53b813d4d491b95ac4c..9038af89fd178f90b128a16c05741c4eaf920648 100644
--- a/LayoutTests/fast/inspector-support/uncaught-dom1-exception.html
+++ b/LayoutTests/fast/inspector-support/uncaught-dom1-exception.html
@@ -8,7 +8,7 @@ function onload()
testRunner.dumpAsText();
// Following code generates an exception.
- var p = document.createTextNode();
+ var p = document.createTextNode('');
p.textContent = "foo";
p.splitText(10000);
}
« no previous file with comments | « LayoutTests/fast/forms/basic-textareas.html ('k') | LayoutTests/fast/inspector-support/uncaught-dom3-exception.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698