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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « android_webview/test/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!-- NOTE: The ids in this file must be kept in sync with MultipleVideosTest.jav a -->
2
3 <html>
4 <head>
5 <script>
6 function playFirstVideo() {
7 document.getElementById('firstVideo').play();
8 }
9
10 function playSecondVideo() {
11 document.getElementById('secondVideo').play();
12 }
13 </script>
14 </head>
15 <body>
16
17 <button id="playFirstButton" style='padding:10px 10px;' onclick="playFirstVideo( ); return false">Play first</button>
18 <button id="playSecondButton" style='padding:10px 10px;' onclick="playSecondVide o(); return false">Play second</button>
19
20 <video style='width: 10px; height: 10px;' id='firstVideo' controls>
21 <source src="video.webm" type="video/webm">
22 </video>
23
24 <video style='width: 10px; height: 10px;' id='secondVideo' controls>
25 <source src="video.webm" type="video/webm">
26 </video>
27
28 </body>
29 </html>
OLDNEW
« 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