1
2
3
4
5
6
7
8
9
10
11
12
13
14
android_webview / test / shell / assets / full_screen_video_test.html [blame]
<!-- NOTE: The ids in this file must be kept in sync with AwContentsClientFullScreenTest -->
<html>
<head>
<script src="full_screen_video.js"></script>
</head>
<body>
<button id="fullscreenControl" autofocus style ='padding:10px 10px;' onclick="goFullscreen('video'); return false">Go fullscreen</button>
<button id="playControl" style='padding:10px 10px;' onclick="playVideo(); return false">Play</button>
<video style = 'width: 10px; height: 10px;' id='video' controls>
<source src="video.webm" type="video/webm">
</video>
</body>
</html>