test_caches.html 770 B

1234567891011121314151617181920212223
  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>Test the CacheStorage API</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. // These tests can only be run in sequential mode because we need to be able
  15. // to rely on the global state of the CacheStorage at all times.
  16. runTests("test_caches.js", "sequential")
  17. .then(function() {
  18. SimpleTest.finish();
  19. });
  20. </script>
  21. </body>
  22. </html>