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

Unified Diff: content/test/data/speech/basic_recognition.html

Issue 260903010: Start removing support for the experimental x-webkit-speech API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't touch histograms.xml Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/speech/basic_recognition.html
diff --git a/content/test/data/speech/basic_recognition.html b/content/test/data/speech/basic_recognition.html
deleted file mode 100644
index 3ef7f7427ccb3554fb94195dcbf55fa7d2c5c033..0000000000000000000000000000000000000000
--- a/content/test/data/speech/basic_recognition.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
- <head>
- <title>Speech input test</title>
- <script type="text/javascript">
- function onspeechresult(value) {
- if (value == "Pictures of the moon") {
- document.getElementById('status').innerHTML = 'PASS';
- document.location = '#pass';
- } else {
- document.location = '#fail';
- }
- }
- </script>
- </head>
- <body style="padding:0; margin:0;">
- <input id='inputField' x-webkit-speech
- onwebkitspeechchange="onspeechresult(this.value);"
- onchange="onspeechresult(this.value);"
- style="position:absolute; margin:0; padding:0; border:0; width:10px;">
- <br>
- <div id="status">FAIL</div>
- <script>document.getElementById('inputField').focus();</script>
- </body>
-</html>
« no previous file with comments | « content/shell/renderer/test_runner/MockWebSpeechInputController.h ('k') | content/test/data/speech/grammar_attribute.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698