OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script src=../../video-test.js></script> | |
5 <script type="text/javascript"> | |
6 function doTest () | |
7 { | |
8 testExpected("MediaKeyError.MEDIA_KEYERR_UNKNOWN", 1); | |
9 testExpected("MediaKeyError.MEDIA_KEYERR_CLIENT", 2); | |
10 testExpected("MediaKeyError.MEDIA_KEYERR_SERVICE", 3); | |
11 testExpected("MediaKeyError.MEDIA_KEYERR_OUTPUT", 4); | |
12 testExpected("MediaKeyError.MEDIA_KEYERR_HARDWARECHANGE", 5); | |
13 testExpected("MediaKeyError.MEDIA_KEYERR_DOMAIN", 6); | |
14 consoleWrite(""); | |
15 | |
16 endTest(); | |
17 } | |
18 </script> | |
19 </head> | |
20 <body onload="doTest()"> | |
21 <p>Test MediaKeyError constants and additional MediaError constant.</p> | |
22 </body> | |
23 </html> | |
OLD | NEW |