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

Side by Side Diff: data/media/youtube_Avril.html

Issue 8764007: Adding Youtube dropped frames performance measurement for different types of videos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/
Patch Set: '' Created 9 years 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 | « no previous file | data/media/youtube_Bourne.html » ('j') | functional/youtube.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!-- This is a test html file for Youtube video tests -->
Nirnimesh 2011/12/01 00:03:14 The only difference between this and youtube.html
2 <html>
3 <script type="text/javascript" src="swfobject.js"></script>
4 <div id="ytapiplayer">
5 You need Flash player 8+ and JavaScript enabled to view this video.
6 </div>
7
8 <script type="text/javascript">
9 function onYouTubePlayerReady(playerId) {
10 ytplayer = document.getElementById("myytplayer");
11 console.log("player ready to play");
12 document.getElementById('player_status').innerHTML = 'player ready';
13 }
14 function loadPlayer() {
15 var params = { allowScriptAccess: "always" };
16 var atts = { id: "myytplayer" };
17 swfobject.embedSWF(
18 "http://www.youtube.com/e/VT1-sitWRtY?enablejsapi=1&playerapiid=ytplayer",
19 "ytapiplayer", "800", "600", "8", null, null, params, atts);
20 }
21 </script>
22
23 <body onload="loadPlayer()">
24 <div id=player_status>Not Ready</div>
25 Youtube flash test</body>
26
27 </html>
OLDNEW
« no previous file with comments | « no previous file | data/media/youtube_Bourne.html » ('j') | functional/youtube.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698