cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / android_webview / test / shell / assets / multiple_videos_test.html
blob12ded883dc13261072db74e935e1207683e892b4
1 <!-- NOTE: The ids in this file must be kept in sync with MultipleVideosTest.java -->
3 <html>
4 <head>
5 <script>
6 function playFirstVideo() {
7 document.getElementById('firstVideo').play();
10 function playSecondVideo() {
11 document.getElementById('secondVideo').play();
13 </script>
14 </head>
15 <body>
17 <button id="playFirstButton" style='padding:10px 10px;' onclick="playFirstVideo(); return false">Play first</button>
18 <button id="playSecondButton" style='padding:10px 10px;' onclick="playSecondVideo(); return false">Play second</button>
20 <video style='width: 10px; height: 10px;' id='firstVideo' controls>
21 <source src="video.mp4" type="video/mp4">
22 </video>
24 <video style='width: 10px; height: 10px;' id='secondVideo' controls>
25 <source src="video.mp4" type="video/mp4">
26 </video>
28 </body>
29 </html>