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

Side by Side Diff: trunk/src/chrome/test/data/media/mse_config_change.html

Issue 383063009: Revert 282795 "Have media content and chrome browser tests load ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Test media source config changes.</title> 3 <title>Test media source config changes.</title>
4 </head> 4 </head>
5 <body onload="runTest();"> 5 <body onload="runTest();">
6 <video controls></video> 6 <video controls></video>
7 <script src='eme_player_js/app_loader.js' type='text/javascript'></script> 7 <script src='eme_player_js/app_loader.js' type='text/javascript'></script>
8 <script type="text/javascript"> 8 <script type="text/javascript">
9 var testConfig = new TestConfig(); 9 var testConfig = new TestConfig();
10 testConfig.loadQueryParams(); 10 testConfig.loadQueryParams();
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 var emePlayer = PlayerUtils.createPlayer(video, testConfig); 126 var emePlayer = PlayerUtils.createPlayer(video, testConfig);
127 emePlayer.registerEventListeners(); 127 emePlayer.registerEventListeners();
128 } 128 }
129 var mediaSource = MediaSourceUtils.loadMediaSource( 129 var mediaSource = MediaSourceUtils.loadMediaSource(
130 MEDIA_1, mediaType, appendNextSource); 130 MEDIA_1, mediaType, appendNextSource);
131 video.src = window.URL.createObjectURL(mediaSource); 131 video.src = window.URL.createObjectURL(mediaSource);
132 } 132 }
133 </script> 133 </script>
134 </body> 134 </body>
135 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698