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

Unified Diff: LayoutTests/fast/forms/basic-textareas.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/forms/basic-textareas.html
diff --git a/LayoutTests/fast/forms/basic-textareas.html b/LayoutTests/fast/forms/basic-textareas.html
index 6fba55d6d5b195acd0e19503b7ecb9af66dd88a3..9aafd25b4ea00c1b0c4d11479b0f8df76b75b0e5 100644
--- a/LayoutTests/fast/forms/basic-textareas.html
+++ b/LayoutTests/fast/forms/basic-textareas.html
@@ -3,7 +3,7 @@
<script>
var docToAppendTo;
function addTextarea(properties, opt_innerHTML) {
- var title = docToAppendTo.createTextNode();
+ var title = docToAppendTo.createTextNode('');
title.nodeValue = '';
var wrapper = docToAppendTo.createElement('div');
wrapper.style.cssText = 'display:inline-block;border:1px solid blue;font-size:12px;';
« no previous file with comments | « LayoutTests/fast/dom/wrapper-classes-expected.txt ('k') | LayoutTests/fast/inspector-support/uncaught-dom1-exception.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698