OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../media-file.js"></script> | 4 <script src="../media-file.js"></script> |
5 <script src="../video-test.js"></script> | 5 <script src="../video-test.js"></script> |
6 <script> | 6 <script> |
7 if (window.testRunner) | 7 if (window.testRunner) |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 | 9 |
10 waitForEvent('loadstart', function () | 10 waitForEvent('loadstart', function () |
11 { | 11 { |
12 var v = document.getElementById('vid'); | 12 var video = document.getElementById('vid'); |
13 v.textTracks[0].mode = "disabled"; | 13 video.textTracks[0].mode = "disabled"; |
| 14 |
| 15 consoleWrite("Waiting for the duration of the first cue to elaps
e."); |
| 16 video.addEventListener('timeupdate', function (e) |
| 17 { |
| 18 if (e.target.currentTime < 1) |
| 19 return; |
| 20 |
| 21 // End test after the duration of the first cue to make su
re the test |
| 22 // doesn't crash during the period this cue would have bee
n |
| 23 // rendered if the track was not disabled. |
| 24 consoleWrite("The duration of the first cue has elapsed.")
; |
| 25 endTest(); |
| 26 }); |
14 }); | 27 }); |
15 | 28 |
16 waitForEventAndEnd('loadedmetadata'); | |
17 </script> | 29 </script> |
18 </head> | 30 </head> |
19 <body> | 31 <body> |
20 <video id="vid" src="../content/test.ogv" autoplay controls> | 32 <video id="vid" src="../content/test.ogv" autoplay controls> |
21 <track kind='subtitles' srclang='en' label='English' src='captions-w
ebvtt/captions.vtt' /> | 33 <track kind='subtitles' srclang='en' label='English' src='captions-w
ebvtt/captions.vtt' /> |
22 </video> | 34 </video> |
23 </body> | 35 </body> |
24 </html> | 36 </html> |
OLD | NEW |