OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <script src=media-file.js></script> |
| 5 <script src=video-test.js></script> |
| 6 <script> |
| 7 function onWindowLoad(e) |
| 8 { |
| 9 video = document.getElementById('video'); |
| 10 |
| 11 video.src = findMediaFile("video", "content/test"); |
| 12 testExpected("video.currentTime", 0); |
| 13 video.currentTime = 1; |
| 14 testExpected("video.currentTime", 1); |
| 15 |
| 16 waitForEvent('loadedmetadata', function() |
| 17 { |
| 18 testExpected("video.currentTime", 1); |
| 19 }); |
| 20 |
| 21 waitForEventAndEnd('seeked'); |
| 22 } |
| 23 |
| 24 window.addEventListener('load', onWindowLoad, false); |
| 25 </script> |
| 26 </head> |
| 27 <body> |
| 28 <video controls id="video"></video> |
| 29 <p>Test currentTime values when setting while HAVE_NOTHING.</p> |
| 30 <br/> |
| 31 </body> |
| 32 </html> |
OLD | NEW |