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

Unified Diff: chrome/test/data/android/media/two_videos.html

Issue 2400543002: [Cast, Tests] Handle low end and JB devices that don't preload videos (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « chrome/test/data/android/media/simple_video2.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/android/media/two_videos.html
diff --git a/chrome/test/data/android/media/two_videos.html b/chrome/test/data/android/media/two_videos.html
index 8c3518001d1032ea32099b0be372044f0a7f1640..eab6e45dc9ab28a1f22683a3c74f8348a0993b0b 100644
--- a/chrome/test/data/android/media/two_videos.html
+++ b/chrome/test/data/android/media/two_videos.html
@@ -3,5 +3,14 @@
<body bgcolor="Silver">
<video src="test.webm" controls id="video"></video>
<video src="test2.webm" controls id="video2"></video>
+<script>
+function loadvideos() {
+ var video = document.getElementById('video');
+ var video2 = document.getElementById('video2');
+ video.load();
+ video2.load();
+}
+</script>
+<button id="button1" onclick="loadvideos()">Click me</button>
</body>
</html>
« no previous file with comments | « chrome/test/data/android/media/simple_video2.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698