Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Test currentTime values when setting while HAVE_NOTHING for media fragment URI.</title> | |
| 5 </head> | |
| 6 <body> | |
| 7 <video controls id="video"></video> | |
|
philipj_slow
2014/09/16 12:27:15
Probably don't need controls.
amogh.bihani
2014/09/16 13:46:01
Done.
| |
| 8 <script src=media-file.js></script> | |
| 9 <script src=video-test.js></script> | |
| 10 <script> | |
| 11 video = document.getElementById('video'); | |
| 12 | |
| 13 video.src = findMediaFile("video", "content/test") + "#t=2"; | |
| 14 testExpected("video.currentTime", 0); | |
| 15 video.currentTime = 1; | |
| 16 | |
| 17 waitForEvent('loadedmetadata', function() | |
| 18 { | |
| 19 testExpected("video.currentTime", 1); | |
| 20 }); | |
| 21 | |
| 22 waitForEventAndEnd('seeked'); | |
| 23 </script> | |
| 24 </body> | |
| 25 </html> | |
| OLD | NEW |