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

Unified Diff: chrome/test/data/android/media/simple_video2.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_video.html ('k') | chrome/test/data/android/media/two_videos.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/android/media/simple_video2.html
diff --git a/chrome/test/data/android/media/simple_video2.html b/chrome/test/data/android/media/simple_video2.html
index 7e227e61598626b4601a73565b8e563d47f7f120..12c7111077f303460b112899139f2a16e8a7d926 100644
--- a/chrome/test/data/android/media/simple_video2.html
+++ b/chrome/test/data/android/media/simple_video2.html
@@ -2,5 +2,12 @@
<title>test</title>
<body bgcolor="Silver">
<video src="test2.webm" controls id="video"></video>
+<script>
+function loadvideo() {
+ var video = document.getElementById('video');
+ video.load();
+}
+</script>
+<button id="button1" onclick="loadvideo()">Click me</button>
</body>
</html>
« no previous file with comments | « chrome/test/data/android/media/simple_video.html ('k') | chrome/test/data/android/media/two_videos.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698