OLD | NEW |
1 Tests boundary values for duration attribute on MediaSource object. | 1 Tests boundary values for duration attribute on MediaSource object. |
2 | 2 |
3 | 3 |
4 running testSetMaxInt | 4 running testSetMaxInt |
5 EVENT(webkitsourceopen) | 5 EVENT(webkitsourceopen) |
6 onDurationChange : video.duration is 6.042 | 6 onDurationChange : video.duration is 6.042 |
7 EXPECTED (mediaSource.duration == 'video.duration') OK | 7 EXPECTED (mediaSource.duration == 'video.duration') OK |
8 EVENT(loadedmetadata) | 8 EVENT(loadedmetadata) |
9 EXPECTED (mediaSource.duration == 'testDurationValue') OK | 9 EXPECTED (mediaSource.duration == 'testDurationValue') OK |
10 onDurationChange : video.duration is 2147483647.000 | 10 onDurationChange : video.duration is 2147483647.000 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 running testSetNegativeDouble | 85 running testSetNegativeDouble |
86 EVENT(webkitsourceopen) | 86 EVENT(webkitsourceopen) |
87 onDurationChange : video.duration is 6.042 | 87 onDurationChange : video.duration is 6.042 |
88 EXPECTED (mediaSource.duration == 'video.duration') OK | 88 EXPECTED (mediaSource.duration == 'video.duration') OK |
89 EVENT(loadedmetadata) | 89 EVENT(loadedmetadata) |
90 PASS: Media Source set duration. Got expected exception Error: InvalidAccessErro
r: DOM Exception 15 | 90 PASS: Media Source set duration. Got expected exception Error: InvalidAccessErro
r: DOM Exception 15 |
91 | 91 |
92 running testSetPositiveDouble | 92 running testSetPositiveDouble |
93 EVENT(webkitsourceopen) | 93 EVENT(webkitsourceopen) |
| 94 onDurationChange : video.duration is 6.042 |
| 95 EXPECTED (mediaSource.duration == 'video.duration') OK |
| 96 EVENT(loadedmetadata) |
| 97 EXPECTED (mediaSource.duration == 'testDurationValue') OK |
| 98 onDurationChange : video.duration is 101.900 |
| 99 EXPECTED (mediaSource.duration == 'video.duration') OK |
| 100 EVENT(durationchange) |
| 101 |
| 102 running testSetZero |
| 103 EVENT(webkitsourceopen) |
| 104 onDurationChange : video.duration is 6.042 |
| 105 EXPECTED (mediaSource.duration == 'video.duration') OK |
| 106 EVENT(loadedmetadata) |
| 107 EXPECTED (mediaSource.duration == 'testDurationValue') OK |
| 108 onDurationChange : video.duration is 0.000 |
| 109 EXPECTED (mediaSource.duration == 'video.duration') OK |
| 110 EVENT(durationchange) |
94 END OF TEST | 111 END OF TEST |
95 | 112 |
OLD | NEW |