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

Side by Side Diff: chrome/test/data/android/media/simple_video.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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <title>test</title> 2 <title>test</title>
3 <body bgcolor="Silver"> 3 <body bgcolor="Silver">
4 <!-- Width should be large enough to dispaly all media controls without needing 4 <!-- Width should be large enough to dispaly all media controls without needing
5 an overflow menu. --> 5 an overflow menu. -->
6 <video src="test.webm" controls id="video" width=500></video> 6 <video src="test.webm" controls id="video" width=500></video>
7 <script>
8 function loadvideo() {
9 var video = document.getElementById('video');
10 video.load();
11 }
12 </script>
13 <button id="button1" onclick="loadvideo()">Click me</button>
7 </body> 14 </body>
8 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698