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

Side by Side Diff: content/test/data/media/encrypted_frame_size_change.html

Issue 408993002: Have media content and chrome browser tests load data from media/test/data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body onload="load()">
4 <p>Tests decoding and rendering encrypted video element that has a changing
5 resolution.</p>
6 <video width=320 controls></video>
7 <video controls></video>
8 <script src="media_utils.js" type="text/javascript"></script>
9 <script src="media_source_utils.js" type="text/javascript"></script>
10 <script src="encrypted_media_utils.js" type="text/javascript"></script>
11 <script>
12 var firstVideoSeek = false;
13 var video_fixed_size = document.getElementsByTagName("video")[0];
14 var video = document.getElementsByTagName("video")[1];
15
16 function load() {
17 loadVideo(video_fixed_size);
18 loadVideo(video);
19 }
20
21 function loadVideo(video) {
22 var mediaSource = loadEncryptedMediaFromURL(video);
23
24 video.addEventListener('playing', function() {
25 // Make sure the video plays for a bit.
26 video.addEventListener('timeupdate', function() {
27 if (video.currentTime > 1.0) {
28 video.pause();
29 }
30 });
31 });
32
33 video.addEventListener('pause', function() {
34 video.addEventListener('seeked', function() {
35 if (!firstVideoSeek) {
36 console.log('One video seeked.');
37 firstVideoSeek = true;
38 return;
39 }
40 setResultInTitle('ENDED');
41 });
42 video.currentTime = 0.5;
43 });
44
45 video.addEventListener('canplay', oncanplay);
46 video.play();
47 }
48 </script>
49 </body>
50 </html>
OLDNEW
« no previous file with comments | « content/test/data/media/blackwhite.html ('k') | content/test/data/media/encrypted_media_player.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698