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

Unified Diff: tools/perf/page_sets/tough_video_cases/video.html

Issue 16854013: Telemetry media_measurement plus play action and tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Split measurement JS from action JS. Wrap JS access in Py class. Add more unit tests. 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/page_sets/tough_video_cases/video.html
diff --git a/tools/perf/page_sets/tough_video_cases/video.html b/tools/perf/page_sets/tough_video_cases/video.html
new file mode 100644
index 0000000000000000000000000000000000000000..424b86735f2fb8b2105307f507f59ae3c34d938f
--- /dev/null
+++ b/tools/perf/page_sets/tough_video_cases/video.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <script src="utils.js" type="text/javascript"></script>
+ <video id="video_1" controls></video>
+ <video id="video_2" src="bear.webm" controls></video>
+ <video src="bear.webm" autoplay controls></video>
+ <script type="text/javascript">
+ var mediaFile = QueryString.mediaFile;
nduca 2013/07/09 23:07:19 i'd rather you have bear_webm.html rather than som
shadi 2013/07/11 00:49:13 As I mentioned in previous comments, this file is
+ var video = document.getElementById('video_1');
+ if (mediaFile)
+ video.src = mediaFile;
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698