| OLD | NEW |
| 1 This tests the constructor for the SpeechRecognitionError DOM class. | 1 This tests the constructor for the SpeechRecognitionError 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 webkitSpeechRecognitionError('eventType').bubbles is false | 6 PASS new webkitSpeechRecognitionError('eventType').bubbles is false |
| 7 PASS new webkitSpeechRecognitionError('eventType').cancelable is false | 7 PASS new webkitSpeechRecognitionError('eventType').cancelable is false |
| 8 PASS new webkitSpeechRecognitionError('eventType').error is "" | 8 PASS new webkitSpeechRecognitionError('eventType').error is "" |
| 9 PASS new webkitSpeechRecognitionError('eventType').message is "" | 9 PASS new webkitSpeechRecognitionError('eventType').message is "" |
| 10 PASS new webkitSpeechRecognitionError('eventType', { bubbles: false }).bubbles i
s false | 10 PASS new webkitSpeechRecognitionError('eventType', { bubbles: false }).bubbles i
s false |
| 11 PASS new webkitSpeechRecognitionError('eventType', { bubbles: true }).bubbles is
true | 11 PASS new webkitSpeechRecognitionError('eventType', { bubbles: true }).bubbles is
true |
| 12 PASS new webkitSpeechRecognitionError('eventType', { cancelable: false }).cancel
able is false | 12 PASS new webkitSpeechRecognitionError('eventType', { cancelable: false }).cancel
able is false |
| 13 PASS new webkitSpeechRecognitionError('eventType', { cancelable: true }).cancela
ble is true | 13 PASS new webkitSpeechRecognitionError('eventType', { cancelable: true }).cancela
ble is true |
| 14 PASS new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error is "b
ar" | 14 PASS new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error is "b
ar" |
| 15 PASS new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message i
s "foo" | 15 PASS new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message i
s "foo" |
| 16 PASS successfullyParsed is true |
| 16 | 17 |
| 18 TEST COMPLETE |
| 19 |
| OLD | NEW |