Index: tools/perf/page_sets/video_stack/video.html |
diff --git a/tools/perf/page_sets/video_stack/video.html b/tools/perf/page_sets/video_stack/video.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2d482d4c37565a71556c0a1372d552cde87653d1 |
--- /dev/null |
+++ b/tools/perf/page_sets/video_stack/video.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<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.
|
+ <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; |
+ var video = document.getElementById('video_1'); |
+ if (mediaFile) |
+ video.src = mediaFile; |
+ </script> |
+ </body> |
+</html> |