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

Side by Side Diff: chrome/test/data/android/media/two_videos.html

Issue 2394273003: Revert of [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
« no previous file with comments | « chrome/test/data/android/media/simple_video2.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <title>test</title> 2 <title>test</title>
3 <body bgcolor="Silver"> 3 <body bgcolor="Silver">
4 <video src="test.webm" controls id="video"></video> 4 <video src="test.webm" controls id="video"></video>
5 <video src="test2.webm" controls id="video2"></video> 5 <video src="test2.webm" controls id="video2"></video>
6 <script>
7 function loadvideos() {
8 var video = document.getElementById('video');
9 var video2 = document.getElementById('video2');
10 video.load();
11 video2.load();
12 }
13 </script>
14 <button id="button1" onclick="loadvideos()">Click me</button>
15 </body> 6 </body>
16 </html> 7 </html>
OLDNEW
« 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