Index: android_webview/javatests/assets/full_screen_video_test.html |
diff --git a/android_webview/javatests/assets/full_screen_video_test.html b/android_webview/javatests/assets/full_screen_video_test.html |
deleted file mode 100644 |
index 466a8d49751c29656f1847bbf6ce08712faaf169..0000000000000000000000000000000000000000 |
--- a/android_webview/javatests/assets/full_screen_video_test.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<html> |
-<head> |
-<script> |
-function goFullscreen(id) { |
- var element = document.getElementById(id); |
- if (element.webkitRequestFullScreen) { |
- element.webkitRequestFullScreen(); |
- } |
-} |
- |
-addEventListener('Loaded', function() { |
- document.getElementById('video').addEventListener('play', function() { |
- console.log('Video Played'); |
- }, false); |
-}, false); |
-</script> |
-</head> |
-<body> |
-</script></head><body> |
-<button autofocus style ='padding:1024px 1024px;' onclick="goFullscreen('video'); return false">Big enough you can't miss it</button> |
-<p></p> |
-<video style = 'width: 10px; height: 10px;' id='video' controls> |
- <source id="webm" src="VIDEO_FILE_URL" type="video/webm"> |
-</video> |
-</body> |
-</html> |