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..bab9386312171557a7e9532f9d410cc073cfb93e |
--- /dev/null |
+++ b/tools/perf/page_sets/video_stack/video.html |
@@ -0,0 +1,14 @@ |
+<html> |
scherkus (not reviewing)
2013/06/14 20:50:45
add <!DOCTYPE html> to top of page
|
+ <body> |
+ <script src="utils.js" type="text/javascript"></script> |
+ <video id="video1" controls></video> |
+ <video id="video2" src="bear.webm" controls></video> |
+ <video src="bear.webm" autoplay controls></video> |
+ </body> |
+ <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.
|
+ var mediaFile = QueryString.mediaFile; |
+ var video = document.getElementById('video1'); |
+ if(mediaFile) |
scherkus (not reviewing)
2013/06/14 20:50:45
space between if and (
shadi
2013/06/17 19:13:59
Done.
|
+ video.src = mediaFile; |
+ </script> |
+</html> |