| 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 <script src=video-test.js></script> | 3 <script src=video-test.js></script> |
| 4 <script> | 4 <script> |
| 5 testExpected("video.seekable.length", 0); | 5 testExpected("video.seekable.length", 0); |
| 6 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); | 6 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZE_ERR"); |
| 7 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); | 7 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_ERR"); |
| 8 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); | 8 testDOMException("video.seekable.start(0)", "DOMException.INDEX_SIZE_ERR"); |
| 9 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); | 9 testDOMException("video.seekable.end(0)", "DOMException.INDEX_SIZE_ERR"); |
| 10 waitForEvent('canplaythrough', | 10 waitForEvent("loadedmetadata", |
| 11 function () | 11 function () |
| 12 { | 12 { |
| 13 testExpected("video.seekable.length", 1); | 13 testExpected("video.seekable.length", 1); |
| 14 testExpected("video.seekable.start(0)", 0); | 14 testExpected("video.seekable.start(0)", 0); |
| 15 testExpected("video.seekable.end(0)", 0, ">"); | 15 testExpected("video.seekable.end(0)", 5, ">"); |
| 16 testExpected("video.seekable.end(0)", 7, "<"); |
| 16 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ
E_ERR"); | 17 testDOMException("video.seekable.start(-1)", "DOMException.INDEX_SIZ
E_ERR"); |
| 17 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_
ERR"); | 18 testDOMException("video.seekable.end(-1)", "DOMException.INDEX_SIZE_
ERR"); |
| 18 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE
_ERR"); | 19 testDOMException("video.seekable.start(1)", "DOMException.INDEX_SIZE
_ERR"); |
| 19 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E
RR"); | 20 testDOMException("video.seekable.end(1)", "DOMException.INDEX_SIZE_E
RR"); |
| 20 endTest(); | 21 endTest(); |
| 21 } | 22 } |
| 22 ); | 23 ); |
| 23 video.src = findMediaFile("video", "content/test"); | 24 video.src = findMediaFile("video", "content/test"); |
| 24 </script> | 25 </script> |
| OLD | NEW |