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

Unified Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html

Issue 105883012: Make arguments to Element methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/time-multiple-fields/time-multiple-fields-speech-crash.html
diff --git a/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html b/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html
index 0ebde44b594351c5ed8c7e790791cf978214ee85..97a5fec755b5df804a2cb63ad980adaed38174a9 100644
--- a/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html
+++ b/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html
@@ -6,7 +6,7 @@
jsTestIsAsync = true;
function test() {
- document.body.appendChild(document.getElementById("input")).setAttribute('x-webkit-speech');
+ document.body.appendChild(document.getElementById("input")).setAttribute('x-webkit-speech', '');
testPassed('if not crashed.');
finishJSTest();
}

Powered by Google App Engine
This is Rietveld 408576698