| OLD | NEW |
| 1 Test basic interaction with the Speech JavaScript API | 1 Test basic interaction with the Speech JavaScript API |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 PASS 'webkitSpeechRecognition' in self is true | 6 PASS 'webkitSpeechRecognition' in self is true |
| 7 PASS webkitSpeechRecognition == null is false | 7 PASS webkitSpeechRecognition == null is false |
| 8 | 8 |
| 9 nullServiceURI(): |
| 10 window.r = new webkitSpeechRecognition() |
| 11 PASS r.start() did not throw exception. |
| 12 onend |
| 13 |
| 14 validServiceURI(): |
| 15 window.r = new webkitSpeechRecognition() |
| 16 r.serviceURI = 'vendor://com.google?foo=bar&client=chromium/com.example' |
| 17 PASS r.start() did not throw exception. |
| 18 onend |
| 19 |
| 9 oneMatchTest(): | 20 oneMatchTest(): |
| 10 onstart | 21 onstart |
| 11 PASS count is 0 | 22 PASS count is 0 |
| 12 onaudiostart | 23 onaudiostart |
| 13 PASS count is 1 | 24 PASS count is 1 |
| 14 onsoundstart | 25 onsoundstart |
| 15 PASS count is 2 | 26 PASS count is 2 |
| 16 onspeechstart | 27 onspeechstart |
| 17 PASS count is 3 | 28 PASS count is 3 |
| 18 onresult | 29 onresult |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 onsoundend | 63 onsoundend |
| 53 PASS count is 6 | 64 PASS count is 6 |
| 54 onaudioend | 65 onaudioend |
| 55 PASS count is 7 | 66 PASS count is 7 |
| 56 onend | 67 onend |
| 57 PASS count is 8 | 68 PASS count is 8 |
| 58 PASS successfullyParsed is true | 69 PASS successfullyParsed is true |
| 59 | 70 |
| 60 TEST COMPLETE | 71 TEST COMPLETE |
| 61 | 72 |
| OLD | NEW |