Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Prefixed and unprefixed EME API</title> | 4 <title>Prefixed and unprefixed EME API</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> |
| 11 <div id="log"></div> | 11 <div id="log"></div> |
| 12 <p>Call unprefixed EME API after prefixed EME API.</p> | 12 <p>Call unprefixed EME API after prefixed EME API.</p> |
| 13 <script> | 13 <script> |
| 14 async_test(function(test) | 14 async_test(function(test) |
| 15 { | 15 { |
| 16 var video = document.getElementById('testVideo'); | 16 var video = document.getElementById('testVideo'); |
| 17 assert_not_equals(video, null); | 17 assert_not_equals(video, null); |
| 18 | 18 |
| 19 function loadStarted() | 19 function loadStarted() |
| 20 { | 20 { |
| 21 video.webkitGenerateKeyRequest('webkit-org.w3.clearkey'); | 21 video.webkitGenerateKeyRequest('webkit-org.w3.clearkey'); |
| 22 MediaKeys.create('org.w3.clearkey').then(function(mediaKeys) { | 22 MediaKeys.create('org.w3.clearkey').then(function(mediaKeys) { |
| 23 assert_not_equals(mediaKeys, null); | 23 assert_not_equals(mediaKeys, null); |
| 24 assert_equals(mediaKeys.keySystem, 'org.w3.clearkey'); | 24 assert_equals(mediaKeys.keySystem, 'org.w3.clearkey'); |
| 25 assert_throws('InvalidStateError', | 25 video.setMediaKeys(mediaKeys).then(function(result) { |
| 26 function () { video.setMediaKeys(mediaKey s); }); | 26 assert_unreached('setMediaKeys should have failed.') ; |
| 27 test.done(); | 27 }, function(error) { |
| 28 test.done(); | |
|
ddorwin
2014/08/08 02:50:51
check the error
jrummell
2014/08/08 23:15:11
Done.
| |
| 29 }); | |
| 28 }).catch(function(error) { | 30 }).catch(function(error) { |
| 29 forceTestFailureFromPromise(test, error); | 31 forceTestFailureFromPromise(test, error); |
| 30 }); | 32 }); |
| 31 } | 33 } |
| 32 | 34 |
| 33 video.src = '../content/test.webm'; | 35 video.src = '../content/test.webm'; |
| 34 waitForEventAndRunStep('loadstart', video, loadStarted, test); | 36 waitForEventAndRunStep('loadstart', video, loadStarted, test); |
| 35 }, 'Call unprefixed EME API after prefixed EME API.'); | 37 }, 'Call unprefixed EME API after prefixed EME API.'); |
| 36 </script> | 38 </script> |
| 37 </body> | 39 </body> |
| 38 </html> | 40 </html> |
| OLD | NEW |