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

Side by Side Diff: content/test/data/android/media/media-session.html

Issue 1862203003: [MediaSession, Test] Move MediaSession test data to all-platforms directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing... Created 4 years, 8 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test page for MediaSession.java</title>
5 <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=n o">
6 </head>
7 <body>
8 <audio id='very-short-audio' controls>
9 <source src='audio-1second.ogg'>
10 </audio>
11 <audio id='short-audio' controls>
12 <source src='audio-4seconds.ogg'>
13 </audio>
14 <audio id='long-audio' controls>
15 <source src='audio-6seconds.ogg'>
16 </audio>
17 <video id='very-short-video' controls>
18 <source src='video-1second.webm'>
19 </video>
20 <video id='short-video' controls>
21 <source src='video-4seconds.webm'>
22 </video>
23 <video id='long-video' controls>
24 <source src='video-6seconds.webm'>
25 </video>
26 <video id='long-video-silent' controls>
27 <source src='video-6seconds-silent.webm'>
28 </video>
29 </body>
30 <script>
31 longVideo = document.getElementById("long-video");
32 longVideo.addEventListener("play", function(e) {
33
34 });
35 </script>
36 </html>
OLDNEW
« no previous file with comments | « content/test/data/android/media/audio-6seconds.ogg ('k') | content/test/data/android/media/video-1second.webm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698