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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-src-remove.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> 2 <body>
3 <script src=media-file.js></script> 3 <script src=media-file.js></script>
4 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 4 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
5 (Please avoid writing new tests using video-test.js) --> 5 (Please avoid writing new tests using video-test.js) -->
6 <script src=video-test.js></script> 6 <script src=video-test.js></script>
7 <div id=panel></div> 7 <div id=panel></div>
8 <script> 8 <script>
9 var panel = document.getElementById("panel"); 9 var panel = document.getElementById("panel");
10 var mediaFile = findMediaFile("video", "content/test"); 10 var mediaFile = findMediaFile("video", "content/test");
11 panel.innerHTML = "<video src=" + mediaFile + " controls onloadedmetadat a='loadedmetadata()'><source src=content/counting.mp4></video>"; 11 panel.innerHTML = "<video src=" + mediaFile + " controls onloadedmetadat a='loadedmetadata()'><source src=content/counting.mp4></video>";
12 </script> 12 </script>
13 13
14 <p>Test that removing valid 'src' attribute DOES NOT trigger load of &lt;sou rce&gt; elements</p> 14 <p>Test that removing valid 'src' attribute DOES NOT trigger load of &lt;sou rce&gt; elements</p>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 testSrc(); 49 testSrc();
50 endTest(); 50 endTest();
51 consoleWrite(""); 51 consoleWrite("");
52 } 52 }
53 53
54 consoleWrite(""); 54 consoleWrite("");
55 </script> 55 </script>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698