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

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

Issue 17002002: TextTrackCue should check for non-NULL cue list pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated more comments from aaron 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
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 waitForEvent('loadstart', function ()
11 {
12 var v = document.getElementById('vid');
13 v.textTracks[0].mode = "disabled";
14 });
15
16 waitForEventAndEnd('loadedmetadata');
17 </script>
18 </head>
19 <body>
20 <video id="vid" src="../content/test.ogv" autoplay controls>
21 <track kind='subtitles' srclang='en' label='English' src='captions-w ebvtt/captions.vtt' />
22 </video>
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698