| 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>
|
|
|