4 <p>Tests decoding and rendering encrypted video element that has a changing
6 <video width=
320 controls
></video>
7 <video controls
></video>
8 <script src='eme_player_js/app_loader.js' type='text/javascript'
></script>
10 var firstVideoSeek
= false;
11 var video_fixed_size
= document
.getElementsByTagName("video")[0];
12 var video
= document
.getElementsByTagName("video")[1];
13 var testConfig
= new TestConfig();
14 testConfig
.loadQueryParams();
17 loadVideo(video_fixed_size
).then(function() {
22 function loadVideo(video
) {
23 video
.addEventListener('playing', function() {
24 // Make sure the video plays for a bit.
25 video
.addEventListener('timeupdate', function() {
26 if (video
.currentTime
> 1.0) {
32 video
.addEventListener('pause', function() {
33 video
.addEventListener('seeked', function() {
34 if (!firstVideoSeek
) {
35 Utils
.timeLog('One video seeked.');
36 firstVideoSeek
= true;
39 Utils
.setResultInTitle('ENDED');
41 video
.currentTime
= 0.5;
44 video
.addEventListener('canplay', oncanplay
);
46 var videoPlayer
= PlayerUtils
.createPlayer(video
, testConfig
);
47 return videoPlayer
.init()
48 .then(function() { video
.play(); })
49 .catch(function() { Utils
.failTest('Unable to play video.'); });