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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-src-blob.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 <script src=media-file.js></script> 4 <script src=media-file.js></script>
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> 8 <script>
9 function inputFileChanged(e) { 9 function inputFileChanged(e) {
10 findMediaElement(); 10 findMediaElement();
11 var file = e.target.files[0]; 11 var file = e.target.files[0];
12 waitForEventAndEnd('loadedmetadata'); 12 waitForEventAndEnd('loadedmetadata');
13 waitForEventAndFail('error'); 13 waitForEventAndFail('error');
14 video.src = window.URL.createObjectURL(file); 14 video.src = window.URL.createObjectURL(file);
15 } 15 }
(...skipping 13 matching lines...) Expand all
29 </script> 29 </script>
30 </head> 30 </head>
31 <body onload="runTest()"> 31 <body onload="runTest()">
32 <div> 32 <div>
33 This tests the ability of the &lt;video&gt; element to load blob URL s. In the browser, select a video file: 33 This tests the ability of the &lt;video&gt; element to load blob URL s. In the browser, select a video file:
34 <input type="file" name="file" id="file"> 34 <input type="file" name="file" id="file">
35 </div> 35 </div>
36 <video></video> 36 <video></video>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/media/video-src.html ('k') | third_party/WebKit/LayoutTests/media/video-src-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698