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

Side by Side Diff: LayoutTests/http/tests/fetch/serviceworker/fetch-access-control-cors-preflight.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 </head> 7 </head>
8 <body> 8 <body>
9 <script> 9 <script>
10 function start(t) { 10 function start(t) {
11 service_worker_test( 11 service_worker_test(
12 '../script-tests/fetch-access-control-auth.js?', 12 '../script-tests/fetch-access-control-cors-preflight.js?',
13 'fetch-access-control-auth'); 13 'fetch-access-control-cors-preflight');
14 t.done(); 14 t.done();
15 } 15 }
16 function init(test) { 16 function init(test) {
17 return login(test) 17 return login(test)
18 .then(function() {return login_https(test);}); 18 .then(function() {return login_https(test);});
19 } 19 }
20 </script> 20 </script>
21 <script src = "../resources/init.js"></script> 21 <script src = "../resources/init.js"></script>
22 </body> 22 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698