OLD | NEW |
1 <video controls></video> | 1 <video controls></video> |
2 <script src=media-file.js></script> | 2 <script src=media-file.js></script> |
| 3 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 4 (Please avoid writing new tests using video-test.js) --> |
3 <script src=video-test.js></script> | 5 <script src=video-test.js></script> |
4 <script> | 6 <script> |
5 testExpected("video.seekable.length", 0); | 7 testExpected("video.seekable.length", 0); |
6 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); | 8 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); |
7 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); | 9 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); |
8 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); | 10 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); |
9 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); | 11 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); |
10 waitForEvent("loadedmetadata", | 12 waitForEvent("loadedmetadata", |
11 function () | 13 function () |
12 { | 14 { |
13 testExpected("video.seekable.length", 1); | 15 testExpected("video.seekable.length", 1); |
14 testExpected("video.seekable.start(0)", 0); | 16 testExpected("video.seekable.start(0)", 0); |
15 testExpected("video.seekable.end(0)", 5, ">"); | 17 testExpected("video.seekable.end(0)", 5, ">"); |
16 testExpected("video.seekable.end(0)", 7, "<"); | 18 testExpected("video.seekable.end(0)", 7, "<"); |
17 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ
E_ERR"); | 19 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ
E_ERR"); |
18 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_
ERR"); | 20 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_
ERR"); |
19 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE
_ERR"); | 21 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE
_ERR"); |
20 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E
RR"); | 22 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E
RR"); |
21 endTest(); | 23 endTest(); |
22 } | 24 } |
23 ); | 25 ); |
24 video.src = findMediaFile("video", "content/test"); | 26 video.src = findMediaFile("video", "content/test"); |
25 </script> | 27 </script> |
OLD | NEW |