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

Unified Diff: LayoutTests/fast/speech/bubble-position.html

Issue 98543009: Make arguments to Element methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix failing tests 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/speech/bubble-position.html
diff --git a/LayoutTests/fast/speech/bubble-position.html b/LayoutTests/fast/speech/bubble-position.html
index b83d180733787d703a85e70752abe590ee06fbba..40c7f10382717c411b2554fbf15e968c9d9d4d61 100644
--- a/LayoutTests/fast/speech/bubble-position.html
+++ b/LayoutTests/fast/speech/bubble-position.html
@@ -26,7 +26,7 @@ function onSpeechChange() {
function run() {
window.iframe = document.getElementById('iframe');
window.input = iframe.contentDocument.createElement('input');
- input.setAttribute('x-webkit-speech');
+ input.setAttribute('x-webkit-speech', '');
input.onwebkitspeechchange = onSpeechChange;
iframe.contentDocument.getElementsByTagName('body')[0].appendChild(input);
« no previous file with comments | « LayoutTests/fast/images/style-access-during-imageChanged-style-freeze.html ('k') | Source/core/dom/Element.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698