OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Verify v2 events</title> | 4 <title>Verify v2 events</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> | 10 <div id="log"></div> |
(...skipping 16 matching lines...) Expand all Loading... | |
27 return mediaKeys.createSession(initDataType, getInitData(ini tDataType)); | 27 return mediaKeys.createSession(initDataType, getInitData(ini tDataType)); |
28 }).then(function(result) { | 28 }).then(function(result) { |
29 mediaKeySession = result; | 29 mediaKeySession = result; |
30 waitForEventAndRunStep('message', mediaKeySession, processMe ssage, test); | 30 waitForEventAndRunStep('message', mediaKeySession, processMe ssage, test); |
31 }).catch(function(error) { | 31 }).catch(function(error) { |
32 forceTestFailureFromPromise(test, error); | 32 forceTestFailureFromPromise(test, error); |
33 }); | 33 }); |
34 }, 'Verify v2 events.'); | 34 }, 'Verify v2 events.'); |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
ddorwin
2014/07/16 22:34:57
? This file probably doesn't belong in this CL.
jrummell
2014/07/18 21:56:00
Removed. The file is missing \n at the end, which
| |
OLD | NEW |