| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 <script src="resources/utilities.js"></script> | |
| 6 </head> | 5 </head> |
| 7 <body> | 6 <body> |
| 8 <p id="description"></p> | 7 <p id="description"></p> |
| 9 <div id="console"></div> | 8 <div id="console"></div> |
| 10 <script> | 9 <script> |
| 11 description("Tests which types are valid for crypto.randomValues."); | 10 description("Tests which types are valid for crypto.randomValues."); |
| 12 | 11 |
| 13 if (!window.ArrayBuffer) | 12 if (!window.ArrayBuffer) |
| 14 debug("This test requres ArrayBuffers to run!"); | 13 debug("This test requres ArrayBuffers to run!"); |
| 15 | 14 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 47 |
| 49 checkIntegerTypes(); | 48 checkIntegerTypes(); |
| 50 checkNonIntegerTypes(); | 49 checkNonIntegerTypes(); |
| 51 | 50 |
| 52 </script> | 51 </script> |
| 53 <script src="../fast/js/resources/js-test-post.js"></script> | 52 <script src="../fast/js/resources/js-test-post.js"></script> |
| 54 </body> | 53 </body> |
| 55 </html> | 54 </html> |
| 56 | 55 |
| 57 | 56 |
| OLD | NEW |