Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(932)

Unified Diff: android_webview/javatests/assets/full_screen_video_test.html

Issue 12317015: [android_webview] Add test shell for webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698