Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Side by Side Diff: LayoutTests/media/track/track-disabled-addcue.html

Issue 18856005: Fix HTMLMediaElement so that it doesn't add cues for disabled text tracks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 onLoad()
8 {
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 var cueDuration = 0.1;
13 var video = document.querySelector("#vid");
14 var track = video.addTextTrack("subtitles");
15 track.mode = "disabled";
16
17 for (var i = 0; i < 10; ++i) {
18 var start = i * cueDuration;
19 var end = start + cueDuration;
20 track.addCue(new TextTrackCue(start, end, "Test Cue " + i));
21 }
22
23 consoleWrite("Waiting for 2 cue durations to elapse.");
24
25 video.addEventListener('timeupdate', function (e)
26 {
27 if (e.target.currentTime < 2 * cueDuration)
28 return;
29
30 // End test after at least 2 cueDurations to make sure the test
31 // doesn't crash during the period the first 2 cues would have been
32 // rendered if the track was not disabled.
33 consoleWrite("2 cue durations have elapsed.");
34 endTest();
35 });
36 video.play();
37 }
38 </script>
39 </head>
40 <body onload="onLoad()">
41 <p>Test adding cues to a disabled text track. </p>
42 <video id="vid" src="../content/test.ogv" controls></video>
43 </body>
44 </html>
OLDNEW
« no previous file with comments | « LayoutTests/media/track/track-disabled.html ('k') | LayoutTests/media/track/track-disabled-addcue-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698