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

Side by Side Diff: LayoutTests/http/tests/fetch/serviceworker-proxied/fetch-access-control-cors-preflight-base-https-other-https.html

Issue 921673003: [Fetch] Split layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 <meta name="timeout" content="long"></meta> 3 <meta name="timeout" content="long"></meta>
4 <script src = "/resources/testharness.js"></script> 4 <script src = "/resources/testharness.js"></script>
5 <script src = "/resources/testharnessreport.js"></script> 5 <script src = "/resources/testharnessreport.js"></script>
6 <script src = "/serviceworker/resources/test-helpers.js"></script> 6 <script src = "/serviceworker/resources/test-helpers.js"></script>
7 <script src = "/serviceworker/resources/fetch-test-options.js"></script> 7 <script src = "/serviceworker/resources/fetch-test-options.js"></script>
8 <script src = "../resources/fetch-test-helpers.js"></script> 8 <script src = "../resources/fetch-test-helpers.js"></script>
9 <script src = "/serviceworker/resources/fetch-access-control-util.js"></script> 9 <script src = "/serviceworker/resources/fetch-access-control-util.js"></script>
10 <script> 10 <script>
11 function onlyOnServiceWorkerProxiedTest(checkFuncs) { 11 function onlyOnServiceWorkerProxiedTest(checkFuncs) {
12 return checkFuncs; 12 return checkFuncs;
13 } 13 }
14 </script> 14 </script>
15 <script src = "../script-tests/fetch-access-control-auth.js?"></script> 15 <script src = "../script-tests/fetch-access-control-cors-preflight.js?-base-http s-other-https"></script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <script> 18 <script>
19 function start(t) { 19 function start(t) {
20 executeServiceWorkerProxiedTests(TEST_TARGETS); 20 executeServiceWorkerProxiedTests(TEST_TARGETS);
21 t.done(); 21 t.done();
22 } 22 }
23 function init(test) { 23 function init(test) {
24 return login(test) 24 return login(test)
25 .then(function() {return login_https(test);}); 25 .then(function() {return login_https(test);});
26 } 26 }
27 27
28 </script> 28 </script>
29 <script src = "../resources/init.js"></script> 29 <script src = "../resources/init.js"></script>
30 </body> 30 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698