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 abandoning a crypto operation."); | 12 description("Tests abandoning a crypto operation."); |
13 | 13 |
14 // This test starts up a couple worker threads, which continuously generate | 14 // This test starts up a couple worker threads, which continuously generate |
(...skipping 18 matching lines...) Expand all Loading... |
33 debug(event.data); | 33 debug(event.data); |
34 resolve(); | 34 resolve(); |
35 }; | 35 }; |
36 })); | 36 })); |
37 } | 37 } |
38 | 38 |
39 Promise.all(allPromises).then(finishJSTest); | 39 Promise.all(allPromises).then(finishJSTest); |
40 </script> | 40 </script> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |