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

Side by Side Diff: third_party/WebKit/LayoutTests/media/media-source-append-multiple.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 <!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 var audio, sourceA, sourceB; 9 var audio, sourceA, sourceB;
10 10
11 function canplaythrough(e) 11 function canplaythrough(e)
12 { 12 {
13 testExpected("audio.currentSrc == sourceA.src", true); 13 testExpected("audio.currentSrc == sourceA.src", true);
14 endTest(); 14 endTest();
15 } 15 }
(...skipping 28 matching lines...) Expand all
44 audio.appendChild(sourceA); 44 audio.appendChild(sourceA);
45 } 45 }
46 46
47 window.addEventListener('load', onWindowLoad, false); 47 window.addEventListener('load', onWindowLoad, false);
48 </script> 48 </script>
49 </head> 49 </head>
50 <body> 50 <body>
51 <audio id="a"></audio> 51 <audio id="a"></audio>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698