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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/media/pdf-served-as-pdf.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 <title>PDF file served as 'application/pdf'</title> 4 <title>PDF file served as 'application/pdf'</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=../../media-resources/video-test.js></script> 7 <script src=../../media-resources/video-test.js></script>
8 <script> 8 <script>
9 function loadedmetadata(evt) 9 function loadedmetadata(evt)
10 { 10 {
11 logResult(false, "loaded PDF file served as PDF"); 11 logResult(false, "loaded PDF file served as PDF");
12 endTest(); 12 endTest();
13 } 13 }
14 14
15 function error(evt) 15 function error(evt)
(...skipping 14 matching lines...) Expand all
30 var movie = "resources/test.pdf"; 30 var movie = "resources/test.pdf";
31 video.src = "http://127.0.0.1:8000/media/video-throttled-load.cg i?name=" + movie + "&throttle=99999&type=application/pdf"; 31 video.src = "http://127.0.0.1:8000/media/video-throttled-load.cg i?name=" + movie + "&throttle=99999&type=application/pdf";
32 } 32 }
33 </script> 33 </script>
34 </head> 34 </head>
35 35
36 <body onload="start()"> 36 <body onload="start()">
37 <video controls></video> 37 <video controls></video>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698