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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-source-load.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, 7 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 <title>load() and the &lt;source&gt; element</title> 4 <title>load() and the &lt;source&gt; element</title>
5 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 5 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
6 (Please avoid writing new tests using video-test.js) --> 6 (Please avoid writing new tests using video-test.js) -->
7 <script src=video-test.js></script> 7 <script src=video-test.js></script>
8 <script src=media-file.js></script> 8 <script src=media-file.js></script>
9 <script> 9 <script>
10 var sources = []; 10 var sources = [];
11 var count = 0; 11 var count = 0;
12 12
13 function canplaythrough() 13 function canplaythrough()
14 { 14 {
15 testExpected("stripExtension(relativeURL(video.currentSrc))", re lativeURL(stripExtension(sources[1]))); 15 testExpected("stripExtension(relativeURL(video.currentSrc))", re lativeURL(stripExtension(sources[1])));
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 waitForEvent("canplaythrough", canplaythrough); 54 waitForEvent("canplaythrough", canplaythrough);
55 waitForEvent("error"); 55 waitForEvent("error");
56 } 56 }
57 </script> 57 </script>
58 </head> 58 </head>
59 <body onload="setup()"> 59 <body onload="setup()">
60 <video controls width=300 ></video> 60 <video controls width=300 ></video>
61 <p>Test that the resource selection algorithm is restarted when load() i s called, and that all &lt;source&gt; elements are reconsidered.</p> 61 <p>Test that the resource selection algorithm is restarted when load() i s called, and that all &lt;source&gt; elements are reconsidered.</p>
62 </body> 62 </body>
63 </html> 63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698