Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / fetch / window / fetch-base-https-other-https.html
blob2876d7290cc2025aed78e0e990fa150e97dd16ec
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/fetch.js?-base-https-other-https';
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>