| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Verify MediaKeySession.keyStatuses</title> | 4 <title>Verify MediaKeySession.keyStatuses</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 <div id="log"></div> | |
| 11 <script> | 10 <script> |
| 12 async_test(function(test) | 11 async_test(function(test) |
| 13 { | 12 { |
| 14 var mediaKeySession; | 13 var mediaKeySession; |
| 15 var initDataType; | 14 var initDataType; |
| 16 var initData; | 15 var initData; |
| 17 var closed = false; | 16 var closed = false; |
| 18 | 17 |
| 19 // Even though key ids are uint8, using printable values so that | 18 // Even though key ids are uint8, using printable values so that |
| 20 // they can be verified easily. | 19 // they can be verified easily. |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 160 |
| 162 waitForEventAndRunStep('message', mediaKeySession, processMe
ssage, test); | 161 waitForEventAndRunStep('message', mediaKeySession, processMe
ssage, test); |
| 163 return mediaKeySession.generateRequest(initDataType, initDat
a); | 162 return mediaKeySession.generateRequest(initDataType, initDat
a); |
| 164 }).catch(function(error) { | 163 }).catch(function(error) { |
| 165 forceTestFailureFromPromise(test, error); | 164 forceTestFailureFromPromise(test, error); |
| 166 }); | 165 }); |
| 167 }, 'Verify MediaKeySession.keyStatuses.'); | 166 }, 'Verify MediaKeySession.keyStatuses.'); |
| 168 </script> | 167 </script> |
| 169 </body> | 168 </body> |
| 170 </html> | 169 </html> |
| OLD | NEW |