OLD | NEW |
1 This tests the constructor for the SpeechRecognitionEvent DOM class. | 1 This tests the constructor for the SpeechRecognitionEvent DOM class. |
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 new webkitSpeechRecognitionEvent('eventType').bubbles is false | 6 PASS new webkitSpeechRecognitionEvent('eventType').bubbles is false |
7 PASS new webkitSpeechRecognitionEvent('eventType').cancelable is false | 7 PASS new webkitSpeechRecognitionEvent('eventType').cancelable is false |
8 PASS new webkitSpeechRecognitionEvent('eventType').results is null | 8 PASS new webkitSpeechRecognitionEvent('eventType').results is null |
9 PASS new webkitSpeechRecognitionEvent('eventType').resultIndex is 0 | 9 PASS new webkitSpeechRecognitionEvent('eventType').resultIndex is 0 |
10 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: false }).bubbles i
s false | 10 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: false }).bubbles i
s false |
11 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: true }).bubbles is
true | 11 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: true }).bubbles is
true |
12 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: false }).cancel
able is false | 12 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: false }).cancel
able is false |
13 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: true }).cancela
ble is true | 13 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: true }).cancela
ble is true |
14 PASS new webkitSpeechRecognitionEvent('eventType', { resultIndex: 42 }).resultIn
dex is 42 | 14 PASS new webkitSpeechRecognitionEvent('eventType', { resultIndex: 42 }).resultIn
dex is 42 |
| 15 PASS successfullyParsed is true |
15 | 16 |
| 17 TEST COMPLETE |
| 18 |
OLD | NEW |