Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: LayoutTests/http/tests/fetch/window/fetch-cache-override-base-https-other-https.html

Issue 1216203003: Replace all sequential_promise_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@update-testharnessjs
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <head> 2 <head>
3 <script src = "/resources/testharness.js"></script> 3 <script src = "/resources/testharness.js"></script>
4 <script src = "/resources/testharness-helpers.js"></script>
5 <script src = "/resources/testharnessreport.js"></script> 4 <script src = "/resources/testharnessreport.js"></script>
6 <script src = "/serviceworker/resources/test-helpers.js"></script> 5 <script src = "/serviceworker/resources/test-helpers.js"></script>
7 <script src = "../resources/fetch-test-options.js"></script> 6 <script src = "../resources/fetch-test-options.js"></script>
8 <script src = "../resources/fetch-test-helpers.js"></script> 7 <script src = "../resources/fetch-test-helpers.js"></script>
9 </head> 8 </head>
10 <body> 9 <body>
11 <script> 10 <script>
12 function start(t) { 11 function start(t) {
13 var script = document.createElement('script'); 12 var script = document.createElement('script');
14 script.src = '../script-tests/fetch-cache-override.js?-base-https-other-https' ; 13 script.src = '../script-tests/fetch-cache-override.js?-base-https-other-https' ;
15 script.addEventListener( 14 script.addEventListener(
16 'error', 15 'error',
17 function() { unreached_rejection(t); }); 16 function() { unreached_rejection(t); });
18 script.addEventListener( 17 script.addEventListener(
19 'load', 18 'load',
20 function() { t.done(); }); 19 function() { t.done(); });
21 document.body.appendChild(script); 20 document.body.appendChild(script);
22 } 21 }
23 function init() { 22 function init() {
24 return Promise.resolve(); 23 return Promise.resolve();
25 } 24 }
26 </script> 25 </script>
27 <script src = "../resources/init.js"></script> 26 <script src = "../resources/init.js"></script>
28 </body> 27 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698