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

Unified Diff: LayoutTests/fast/inspector-support/uncaught-dom3-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-dom3-exception.html
diff --git a/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html b/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html
index e85da9314ccc7cd49c26b45636cc80eeaff65a48..b975f53e9b6415f7fee0db778eeb255204447a85 100644
--- a/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html
+++ b/LayoutTests/fast/inspector-support/uncaught-dom3-exception.html
@@ -6,7 +6,7 @@ function onload()
{
if (window.testRunner)
testRunner.dumpAsText();
- document.appendChild(document.createElement());
+ document.appendChild(document.createElement('x'));
}
</script>

Powered by Google App Engine
This is Rietveld 408576698