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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/media/video-seek-to-middle.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 function testCommonAttributes(seekingExpected) 8 function testCommonAttributes(seekingExpected)
9 { 9 {
10 testExpected('video.seeking', seekingExpected, '=='); 10 testExpected('video.seeking', seekingExpected, '==');
11 testExpected('video.ended', false, '=='); 11 testExpected('video.ended', false, '==');
12 testExpected('video.currentTime == (video.duration / 2)', true, '=='); 12 testExpected('video.currentTime == (video.duration / 2)', true, '==');
13 testExpected('video.paused', false, '=='); 13 testExpected('video.paused', false, '==');
14 } 14 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 video.src = '/' + mediaFile; 54 video.src = '/' + mediaFile;
55 run('video.play()'); 55 run('video.play()');
56 } 56 }
57 </script> 57 </script>
58 </head> 58 </head>
59 <body onload="start()"> 59 <body onload="start()">
60 <video></video> 60 <video></video>
61 <p>Test event dispatches and attribute changes for seek to middle</p> 61 <p>Test event dispatches and attribute changes for seek to middle</p>
62 </body> 62 </body>
63 </html> 63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698