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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-dom-preload.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 <head> 2 <head>
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=video-test.js></script> 5 <script src=video-test.js></script>
6 <script> 6 <script>
7 function setPreload(value, expected) 7 function setPreload(value, expected)
8 { 8 {
9 consoleWrite("- set via DOM"); 9 consoleWrite("- set via DOM");
10 run("video.removeAttribute('preload')"); 10 run("video.removeAttribute('preload')");
11 run("video.preload = '" + value + "'"); 11 run("video.preload = '" + value + "'");
12 testExpected("video.getAttribute('preload')", expected); 12 testExpected("video.getAttribute('preload')", expected);
13 testExpected("video.preload", expected); 13 testExpected("video.preload", expected);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 endTest(); 59 endTest();
60 } 60 }
61 </script> 61 </script>
62 62
63 </head> 63 </head>
64 64
65 <body onload="test()"> 65 <body onload="test()">
66 <video controls></video> 66 <video controls></video>
67 </body> 67 </body>
68 </html> 68 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/media/video-dom-autoplay.html ('k') | third_party/WebKit/LayoutTests/media/video-dom-src.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698