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

Side by Side Diff: LayoutTests/media/track/track-disabled.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
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-addcue.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-addcue.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698