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

Unified Diff: android_webview/test/shell/assets/multiple_videos_test.html

Issue 2299883007: Remove video overlay support from WebView (Closed)
Patch Set: Removed another external_video_surface reference Created 4 years, 3 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
« no previous file with comments | « android_webview/test/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/test/shell/assets/multiple_videos_test.html
diff --git a/android_webview/test/shell/assets/multiple_videos_test.html b/android_webview/test/shell/assets/multiple_videos_test.html
deleted file mode 100644
index 70c39454d3c9767e795917739cf95d2419991a19..0000000000000000000000000000000000000000
--- a/android_webview/test/shell/assets/multiple_videos_test.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!-- NOTE: The ids in this file must be kept in sync with MultipleVideosTest.java -->
-
-<html>
-<head>
-<script>
-function playFirstVideo() {
- document.getElementById('firstVideo').play();
-}
-
-function playSecondVideo() {
- document.getElementById('secondVideo').play();
-}
-</script>
-</head>
-<body>
-
-<button id="playFirstButton" style='padding:10px 10px;' onclick="playFirstVideo(); return false">Play first</button>
-<button id="playSecondButton" style='padding:10px 10px;' onclick="playSecondVideo(); return false">Play second</button>
-
-<video style='width: 10px; height: 10px;' id='firstVideo' controls>
- <source src="video.webm" type="video/webm">
-</video>
-
-<video style='width: 10px; height: 10px;' id='secondVideo' controls>
- <source src="video.webm" type="video/webm">
-</video>
-
-</body>
-</html>
« no previous file with comments | « android_webview/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698