Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / fetch / window / cache-override.html
blob5e13e7d86f7d2890c6bbb2891d9b24b05c8ef455
1 <!doctype html>
2 <head>
3 <meta name="timeout" content="long"></meta>
4 <script src = "/resources/testharness.js"></script>
5 <script src = "/resources/testharness-helpers.js"></script>
6 <script src = "/resources/testharnessreport.js"></script>
7 <script src = "/serviceworker/resources/test-helpers.js"></script>
8 <script src = "../resources/fetch-test-options.js"></script>
9 <script src = "../resources/fetch-test-helpers.js"></script>
10 </head>
11 <body>
12 <script>
13 function start(t) {
14 var script = document.createElement('script');
15 script.src = '../script-tests/cache-override.js?';
16 script.addEventListener(
17 'error',
18 function() { unreached_rejection(t); });
19 script.addEventListener(
20 'load',
21 function() { t.done(); });
22 document.body.appendChild(script);
24 function init() {
25 return Promise.resolve();
27 </script>
28 <script src = "../resources/init.js"></script>
29 </body>