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("Test generating an EC key pair for ECDH."); | 12 description("Test generating an EC key pair for ECDH."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
(...skipping 26 matching lines...) Expand all Loading... |
41 shouldBe("keyPair.publicKey.foo", "'bar'"); | 41 shouldBe("keyPair.publicKey.foo", "'bar'"); |
42 finishJSTest(); | 42 finishJSTest(); |
43 }, 0); | 43 }, 0); |
44 }, 0); | 44 }, 0); |
45 }).catch(failAndFinishJSTest); | 45 }).catch(failAndFinishJSTest); |
46 | 46 |
47 </script> | 47 </script> |
48 | 48 |
49 </body> | 49 </body> |
50 </html> | 50 </html> |
OLD | NEW |