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

Side by Side Diff: chrome/test/data/speech/enable_speech_input_switch_test.html

Issue 3064017: Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1 (Closed)
Patch Set: Added button images to test shell and set flag. Created 10 years, 4 months 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 unified diff | Download patch
« no previous file with comments | « chrome/renderer/render_thread.cc ('k') | webkit/tools/test_shell/test_shell_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>SpeechInputEnableSwitchTest</title>
4 <script type="text/javascript">
5 function run() {
6 var inputField = document.getElementById('inputField');
7 if (inputField.speech) {
8 document.getElementById('status').innerHTML = 'FAIL';
9 document.location = '#fail';
10 } else {
11 document.getElementById('status').innerHTML = 'PASS';
12 document.location = '#pass';
13 }
14 }
15 </script>
16 </head>
17 <body onload="run()">
18 <input id='inputField' speech><br>
19 <div id="status">Running...</div>
20 </body>
21 </html>
22
OLDNEW
« no previous file with comments | « chrome/renderer/render_thread.cc ('k') | webkit/tools/test_shell/test_shell_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698