test_cache_https.html 628 B

123456789101112131415161718192021
  1. <!-- Any copyright is dedicated to the Public Domain.
  2. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  3. <!DOCTYPE HTML>
  4. <html>
  5. <head>
  6. <title>Validate Interfaces Exposed to Workers</title>
  7. <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  8. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  9. <script type="text/javascript" src="driver.js"></script>
  10. </head>
  11. <body>
  12. <iframe id="frame"></iframe>
  13. <script class="testbody" type="text/javascript">
  14. runTests("test_cache_https.js")
  15. .then(function() {
  16. SimpleTest.finish();
  17. });
  18. </script>
  19. </body>
  20. </html>