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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/media/video-buffered-range-contains-currentTime.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src=../../media-resources/media-file.js></script> 3 <script src=../../media-resources/media-file.js></script>
4 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 4 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
5 (Please avoid writing new tests using video-test.js) --> 5 (Please avoid writing new tests using video-test.js) -->
6 <script src=../../media-resources/video-test.js></script> 6 <script src=../../media-resources/video-test.js></script>
7 <script> 7 <script>
8 if (window.testRunner) 8 if (window.testRunner)
9 testRunner.dumpAsTextWithPixelResults(); // To get pixels. 9 testRunner.dumpAsTextWithPixelResults(); // To get pixels.
10 10
11 function start() { 11 function start() {
12 findMediaElement(); 12 findMediaElement();
13 13
14 waitForEventAndEnd('ended'); 14 waitForEventAndEnd('ended');
15 waitForEvent('seeked', function() { 15 waitForEvent('seeked', function() {
16 video.play(); 16 video.play();
17 }); 17 });
18 waitForEvent('loadedmetadata', function() { 18 waitForEvent('loadedmetadata', function() {
19 video.currentTime = video.duration - 0.5; 19 video.currentTime = video.duration - 0.5;
20 } ); 20 } );
21 21
22 var mediaFile = findMediaFile("audio", "../../../media/content/tes t"); 22 var mediaFile = findMediaFile("audio", "../../../media/content/tes t");
23 var type = mimeTypeForExtension(mediaFile.split('.').pop()); 23 var type = mimeTypeForExtension(mediaFile.split('.').pop());
24 video.src = "http://127.0.0.1:8000/media/video-throttled-load.cgi? name=" + mediaFile + "&throttle=50&nph=1&type=" + type; 24 video.src = "http://127.0.0.1:8000/media/video-throttled-load.cgi? name=" + mediaFile + "&throttle=50&nph=1&type=" + type;
25 video.load(); 25 video.load();
26 } 26 }
27 </script> 27 </script>
28 </head> 28 </head>
29 <body onload="start()"> 29 <body onload="start()">
30 <video controls></video> 30 <video controls></video>
31 <p>Test that the painted buffered range contains currentTime.</p> 31 <p>Test that the painted buffered range contains currentTime.</p>
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698