| OLD | NEW |
| 1 Verify that TextTrackCue exceptions are properly messaged to developers. | 1 Verify that TextTrackCue exceptions are properly messaged to developers. |
| 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 cue.startTime = Number.NaN; threw exception TypeError: Failed to set the 's
tartTime' property on 'TextTrackCue': The value provided is not a number.. | 6 PASS cue.startTime = Number.NaN; threw exception TypeError: Failed to set the 's
tartTime' property on 'TextTrackCue': The provided double value is non-finite.. |
| 7 PASS cue.startTime = Number.POSITIVE_INFINITY; threw exception TypeError: Failed
to set the 'startTime' property on 'TextTrackCue': The value provided is infini
te.. | 7 PASS cue.startTime = Number.POSITIVE_INFINITY; threw exception TypeError: Failed
to set the 'startTime' property on 'TextTrackCue': The provided double value is
non-finite.. |
| 8 PASS cue.startTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed
to set the 'startTime' property on 'TextTrackCue': The value provided is infini
te.. | 8 PASS cue.startTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed
to set the 'startTime' property on 'TextTrackCue': The provided double value is
non-finite.. |
| 9 PASS cue.endTime = Number.NaN; threw exception TypeError: Failed to set the 'end
Time' property on 'TextTrackCue': The value provided is not a number.. | 9 PASS cue.endTime = Number.NaN; threw exception TypeError: Failed to set the 'end
Time' property on 'TextTrackCue': The provided double value is non-finite.. |
| 10 PASS cue.endTime = Number.POSITIVE_INFINITY; threw exception TypeError: Failed t
o set the 'endTime' property on 'TextTrackCue': The value provided is infinite.. | 10 PASS cue.endTime = Number.POSITIVE_INFINITY; threw exception TypeError: Failed t
o set the 'endTime' property on 'TextTrackCue': The provided double value is non
-finite.. |
| 11 PASS cue.endTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed t
o set the 'endTime' property on 'TextTrackCue': The value provided is infinite.. | 11 PASS cue.endTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed t
o set the 'endTime' property on 'TextTrackCue': The provided double value is non
-finite.. |
| 12 PASS successfullyParsed is true | 12 PASS successfullyParsed is true |
| 13 | 13 |
| 14 TEST COMPLETE | 14 TEST COMPLETE |
| 15 | 15 |
| OLD | NEW |