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

Side by Side Diff: chrome/test/data/media/html/media_basic_playback.html

Issue 10825038: Update basic_media_playback tests to use media files in content/test/data (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 <!-- Used by media_basic_playback to verify basic playback. --> 1 <!-- Used by media_basic_playback to verify basic playback. -->
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 <html lang="en-US"> 3 <html lang="en-US">
4 <head> 4 <head>
5 <title>Basic Media Playback Test</title> 5 <title>Basic Media Playback Test</title>
6 </head> 6 </head>
7 7
8 <body> 8 <body>
9 <video autoplay preload controls></video> 9 <video autoplay preload controls></video>
10 </body> 10 </body>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 }, false); 46 }, false);
47 47
48 video.addEventListener('seeked', function(event) { 48 video.addEventListener('seeked', function(event) {
49 logEvent(event); 49 logEvent(event);
50 video.play(); 50 video.play();
51 }, false); 51 }, false);
52 52
53 function startTest(media) { 53 function startTest(media) {
54 events = []; 54 events = [];
55 video.src = '../' + media; 55 video.src = media;
56 } 56 }
57 </script> 57 </script>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698