| 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 invalidServiceURI(): |
| 15 window.r = new webkitSpeechRecognition() |
| 16 r.serviceURI = 'http:/:/:/badurl' |
| 17 PASS r.start() did not throw exception. |
| 18 onend |
| 19 |
| 20 validServiceURI(): |
| 21 window.r = new webkitSpeechRecognition() |
| 22 r.serviceURI = 'chrome://speech-recognition?foo=bar&client=com.example' |
| 23 PASS r.start() did not throw exception. |
| 24 onend |
| 25 |
| 9 oneMatchTest(): | 26 oneMatchTest(): |
| 10 onstart | 27 onstart |
| 11 PASS count is 0 | 28 PASS count is 0 |
| 12 onaudiostart | 29 onaudiostart |
| 13 PASS count is 1 | 30 PASS count is 1 |
| 14 onsoundstart | 31 onsoundstart |
| 15 PASS count is 2 | 32 PASS count is 2 |
| 16 onspeechstart | 33 onspeechstart |
| 17 PASS count is 3 | 34 PASS count is 3 |
| 18 onresult | 35 onresult |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 onsoundend | 69 onsoundend |
| 53 PASS count is 6 | 70 PASS count is 6 |
| 54 onaudioend | 71 onaudioend |
| 55 PASS count is 7 | 72 PASS count is 7 |
| 56 onend | 73 onend |
| 57 PASS count is 8 | 74 PASS count is 8 |
| 58 PASS successfullyParsed is true | 75 PASS successfullyParsed is true |
| 59 | 76 |
| 60 TEST COMPLETE | 77 TEST COMPLETE |
| 61 | 78 |
| OLD | NEW |