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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/video-cross-origin-readback.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 <html> 1 <html>
2 <body onload="start()"> 2 <body onload="start()">
3 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 3 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
4 (Please avoid writing new tests using video-test.js) --> 4 (Please avoid writing new tests using video-test.js) -->
5 <script src=../../media-resources/video-test.js></script> 5 <script src=../../media-resources/video-test.js></script>
6 <script src=../../media-resources/media-file.js></script> 6 <script src=../../media-resources/media-file.js></script>
7 <script> 7 <script>
8 waitForEvent('error', function() { 8 waitForEvent('error', function() {
9 failTest("error: " + JSON.stringify(video.error)); 9 failTest("error: " + JSON.stringify(video.error));
10 }); 10 });
11 11
12 waitForEvent('playing', function() { 12 waitForEvent('playing', function() {
13 try { 13 try {
(...skipping 12 matching lines...) Expand all
26 var type = mimeTypeForExtension(mediaFile.split('.').pop()); 26 var type = mimeTypeForExtension(mediaFile.split('.').pop());
27 video.src = "http://localhost:8080/security/resources/video-cross-or igin-allow.php?name=" + mediaFile + "&type=" + type; 27 video.src = "http://localhost:8080/security/resources/video-cross-or igin-allow.php?name=" + mediaFile + "&type=" + type;
28 video.play(); 28 video.play();
29 } 29 }
30 </script> 30 </script>
31 31
32 <video crossorigin></video> 32 <video crossorigin></video>
33 <canvas></canvas> 33 <canvas></canvas>
34 </body> 34 </body>
35 </head> 35 </head>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698