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

Side by Side Diff: content/test/data/media/player.html

Issue 10805089: Copy the MediaTest.* data files to content/test/data in preparation for porting the media browserte… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « content/test/data/media/bear_silent.webm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <div id="player_container"></div> 3 <div id="player_container"></div>
4 <script> 4 <script>
5 var player = null; 5 var player = null;
6 function InstallEventHandler(event, action) { 6 function InstallEventHandler(event, action) {
7 player.addEventListener(event, function(e) { 7 player.addEventListener(event, function(e) {
8 eval(action); 8 eval(action);
9 }, false); 9 }, false);
10 } 10 }
(...skipping 25 matching lines...) Expand all
36 player.play(); 36 player.play();
37 } 37 }
38 } 38 }
39 } 39 }
40 if (!ok) { 40 if (!ok) {
41 document.title = 'FAILED'; 41 document.title = 'FAILED';
42 } 42 }
43 </script> 43 </script>
44 </body> 44 </body>
45 </html> 45 </html>
OLDNEW
« no previous file with comments | « content/test/data/media/bear_silent.webm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698