OLD | NEW |
---|---|
(Empty) | |
1 Test of the media element 'played' attribute | |
2 | |
3 EVENT(loadstart) | |
4 EVENT(loadedmetadata) | |
5 EVENT(canplay) | |
6 Test 1 OK | |
7 | |
8 Test playing when there are no ranges | |
9 RUN(video.play()) | |
10 RUN(video.pause()) | |
11 EVENT(pause) | |
12 Test 2 OK | |
13 Test 3 OK | |
14 Test 4 OK | |
15 | |
16 Test to reset to non empty video source | |
17 RUN(video.load()) | |
18 EVENT(loadstart) | |
19 EVENT(loadedmetadata) | |
20 EVENT(canplay) | |
21 Test 5 OK | |
22 | |
23 Test jumping forward into a new range and play | |
24 RUN(video.play()) | |
25 RUN(video.pause()) | |
26 EVENT(pause) | |
27 Test 6 OK | |
28 Test 7 OK | |
29 Test 8 OK | |
30 | |
31 Test to reset to an empty video source | |
32 RUN(video.src = "") | |
33 RUN(video.load()) | |
34 EVENT(loadstart) | |
35 EVENT(loadstart) | |
36 Test 9 OK | |
37 END OF TEST | |
38 | |
OLD | NEW |