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

Side by Side Diff: LayoutTests/media/encrypted-media/encrypted-media-lifetime-reload.html

Issue 423633002: Make HTMLMediaElement.setMediaKeys() asynchronous. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Reloading during encrypted media playback</title> 4 <title>Reloading during encrypted media playback</title>
5 <script src="encrypted-media-utils.js"></script> 5 <script src="encrypted-media-utils.js"></script>
6 <script src="../../resources/testharness.js"></script> 6 <script src="../../resources/testharness.js"></script>
7 <script src="../../resources/testharnessreport.js"></script> 7 <script src="../../resources/testharnessreport.js"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <video id="testVideo"></video> 10 <video id="testVideo"></video>
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // Reload the page to catch any possible teardown issues. 71 // Reload the page to catch any possible teardown issues.
72 if (location.hash == '#x') { 72 if (location.hash == '#x') {
73 test.done(); 73 test.done();
74 return; 74 return;
75 } 75 }
76 76
77 location.hash += 'x'; 77 location.hash += 'x';
78 location.reload(); 78 location.reload();
79 } 79 }
80 80
81 waitForEventAndRunStep('needkey', video, onNeedKey, test);
82 waitForEventAndRunStep('playing', video, onPlaying, test);
83 video.src = '../content/test-encrypted.webm';
84
81 MediaKeys.create('org.w3.clearkey').then(function(mediaKeys) { 85 MediaKeys.create('org.w3.clearkey').then(function(mediaKeys) {
82 86 return video.setMediaKeys(mediaKeys);
83 waitForEventAndRunStep('needkey', video, onNeedKey, test); 87 }).then(function(result) {
84 waitForEventAndRunStep('playing', video, onPlaying, test);
85
86 video.setMediaKeys(mediaKeys);
87 video.src = '../content/test-encrypted.webm';
88 video.play(); 88 video.play();
89 }).catch(function(error) { 89 }).catch(function(error) {
90 forceTestFailureFromPromise(test, error); 90 forceTestFailureFromPromise(test, error);
91 }); 91 });
92 }, 'Reloading during encrypted media playback.'); 92 }, 'Reloading during encrypted media playback.');
93 </script> 93 </script>
94 </body> 94 </body>
95 </html> 95 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698