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

Unified Diff: chrome/test/data/speech/grammar_attribute.html

Issue 10703141: End-to-end browser tests for speech recognition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved test to /chrome/test Created 8 years, 5 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
« no previous file with comments | « chrome/test/data/speech/basic_recognition.html ('k') | chrome/test/speech/mock_google_one_shot_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/speech/grammar_attribute.html
diff --git a/chrome/test/data/speech/grammar_attribute.html b/chrome/test/data/speech/grammar_attribute.html
deleted file mode 100644
index 93f41d357f63b18fe5720f913d20507d3dc6c22a..0000000000000000000000000000000000000000
--- a/chrome/test/data/speech/grammar_attribute.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
- <head>
- <title>Speech input with grammar attribute 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
- x-webkit-grammar="http://example.com/grammar.xml"
- 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>
- </body>
-</html>
« no previous file with comments | « chrome/test/data/speech/basic_recognition.html ('k') | chrome/test/speech/mock_google_one_shot_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698