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

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: removed un-needed file 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 <!DOCTYPE html>
2 <html>
nduca 2013/06/17 23:01:33 why not just make a few html files that do the rig
shadi 2013/06/18 00:30:01 This was just for demonstration/testing purposes.
3 <body>
4 <script src="utils.js" type="text/javascript"></script>
5 <video id="video_1" controls></video>
6 <video id="video_2" src="bear.webm" controls></video>
7 <video src="bear.webm" autoplay controls></video>
8 <script type="text/javascript">
9 var mediaFile = QueryString.mediaFile;
10 var video = document.getElementById('video_1');
11 if (mediaFile)
12 video.src = mediaFile;
13 </script>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698