| 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 generateKey() with bad HMAC parameters."); | 12 description("Tests generateKey() with bad HMAC parameters."); |
| 13 jsTestIsAsync = true; | 13 jsTestIsAsync = true; |
| 14 | 14 |
| 15 extractable = true; | 15 extractable = true; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 debug("\ngenerateKey() with length that is a undefined..."); | 54 debug("\ngenerateKey() with length that is a undefined..."); |
| 55 return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, len
gth: undefined}, extractable , keyUsages); | 55 return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, len
gth: undefined}, extractable , keyUsages); |
| 56 }).then(failAndFinishJSTest, function(result) { | 56 }).then(failAndFinishJSTest, function(result) { |
| 57 logError(result); | 57 logError(result); |
| 58 }).then(finishJSTest, failAndFinishJSTest); | 58 }).then(finishJSTest, failAndFinishJSTest); |
| 59 | 59 |
| 60 </script> | 60 </script> |
| 61 | 61 |
| 62 </body> | 62 </body> |
| 63 </html> | 63 </html> |
| OLD | NEW |