| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
| 5 <script src="resources/common.js"></script> | 5 <script src="resources/common.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <p id="description"></p> | 8 <p id="description"></p> |
| 9 <div id="console"></div> | 9 <div id="console"></div> |
| 10 | 10 |
| 11 <script> | 11 <script> |
| 12 description("Tests structured de-cloning of empty HMAC keys"); | 12 description("Tests structured de-cloning of empty HMAC keys"); |
| 13 | 13 |
| 14 // It used to be possible to import empty HMAC keys, so it is possible that | 14 // It used to be possible to import empty HMAC keys, so it is possible that |
| (...skipping 10 matching lines...) Expand all Loading... |
| 25 shouldEvaluateAs("key.extractable", true); | 25 shouldEvaluateAs("key.extractable", true); |
| 26 shouldEvaluateAs("key.algorithm.name", "HMAC"); | 26 shouldEvaluateAs("key.algorithm.name", "HMAC"); |
| 27 shouldEvaluateAs("key.algorithm.length", 0); | 27 shouldEvaluateAs("key.algorithm.length", 0); |
| 28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1"); | 28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1"); |
| 29 shouldEvaluateAs("key.usages.toString()", "sign"); | 29 shouldEvaluateAs("key.usages.toString()", "sign"); |
| 30 | 30 |
| 31 </script> | 31 </script> |
| 32 | 32 |
| 33 </body> | 33 </body> |
| 34 </html> | 34 </html> |
| OLD | NEW |