Index: android_webview/test/shell/assets/full_screen_video_inside_div_test.html |
diff --git a/android_webview/test/shell/assets/full_screen_video_inside_div_test.html b/android_webview/test/shell/assets/full_screen_video_inside_div_test.html |
index bd28e7aea9576efd2797c92c1ccb05a0d7170c21..8fe0cddaa1165786b8c99ba759eb554bee2a10d7 100644 |
--- a/android_webview/test/shell/assets/full_screen_video_inside_div_test.html |
+++ b/android_webview/test/shell/assets/full_screen_video_inside_div_test.html |
@@ -1,17 +1,18 @@ |
+<!-- NOTE: The ids in this file must be kept in sync with AwContentsClientFullScreenTest --> |
+ |
<html> |
<head> |
<script src="full_screen_video.js"></script> |
</head> |
<body> |
</script></head><body> |
-<button autofocus style ='padding:1024px 1024px;' onclick="goFullscreen('div'); return false">Big enough you can't miss it</button> |
+<button id="fullscreenControl" autofocus style='padding:10px 10px;' onclick="goFullscreen('div'); return false">Go fullscreen</button> |
<p></p> |
-<div id='div'> |
- <!-- The video id must be kept in sync with VideoTestWebServer.VIDEO_ID --> |
- <video style = 'width: 1px; height: 1px;' id='video'> |
- <source id="webm" src="VIDEO_FILE_URL" type="video/webm"> |
+<div id='div'> |
+ <button id="playControl" style='padding:10px 10px;' onclick="playVideo(); return false">Play</button> |
+ <video style = 'width: 300px; height: 300px;' id='video'> |
+ <source src="video.mp4" type="video/mp4"> |
</video> |
- <button style = 'width: 100%; height: 100%;' onclick="playVideo(); return false">Play</button> |
</div> |
</body> |
</html> |