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

Side by Side Diff: tools/perf/page_sets/video_stack/video.html

Issue 16854013: Telemetry media_measurement plus play action and tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
(Empty)
1 <html>
scherkus (not reviewing) 2013/06/14 20:50:45 add <!DOCTYPE html> to top of page
2 <body>
3 <script src="utils.js" type="text/javascript"></script>
4 <video id="video1" controls></video>
5 <video id="video2" src="bear.webm" controls></video>
6 <video src="bear.webm" autoplay controls></video>
7 </body>
8 <script type="text/javascript">
scherkus (not reviewing) 2013/06/14 20:50:45 this can go in the <body> as well
shadi 2013/06/17 19:13:59 Done.
9 var mediaFile = QueryString.mediaFile;
10 var video = document.getElementById('video1');
11 if(mediaFile)
scherkus (not reviewing) 2013/06/14 20:50:45 space between if and (
shadi 2013/06/17 19:13:59 Done.
12 video.src = mediaFile;
13 </script>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698