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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5
6 <script src=../media-file.js></script> 6 <script src=../media-file.js></script>
7 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 7 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
8 (Please avoid writing new tests using video-test.js) --> 8 (Please avoid writing new tests using video-test.js) -->
9 <script src=../video-test.js></script> 9 <script src=../video-test.js></script>
10 <script> 10 <script>
11 var videoCanPlayThrough = false; 11 var videoCanPlayThrough = false;
12 var trackLoaded = false; 12 var trackLoaded = false;
13 13
14 var currentCue; 14 var currentCue;
15 var currentCueNumber = 0; 15 var currentCueNumber = 0;
16 16
17 function runTests() 17 function runTests()
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 </script> 78 </script>
79 </head> 79 </head>
80 <body onload="bodyLoaded()"> 80 <body onload="bodyLoaded()">
81 <p>Tests that the video is paused after cues that have pause-on-exit fla g are processed</p> 81 <p>Tests that the video is paused after cues that have pause-on-exit fla g are processed</p>
82 <video controls> 82 <video controls>
83 <track id="testTrack" src="captions-webvtt/simple-captions.vtt" onlo ad="loaded()" default> 83 <track id="testTrack" src="captions-webvtt/simple-captions.vtt" onlo ad="loaded()" default>
84 </video> 84 </video>
85 </body> 85 </body>
86 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698