| Index: LayoutTests/http/tests/fetch/serviceworker/thorough/redirect-loop-base-https-other-https.html
|
| diff --git a/LayoutTests/http/tests/fetch/serviceworker/thorough/redirect-loop-base-https-other-https.html b/LayoutTests/http/tests/fetch/serviceworker/thorough/redirect-loop-base-https-other-https.html
|
| index bb5dfefe6a49a66e669073669caba37a2f40dbcd..7df2cdb0ea1e257c6228647309ae5be369f14476 100644
|
| --- a/LayoutTests/http/tests/fetch/serviceworker/thorough/redirect-loop-base-https-other-https.html
|
| +++ b/LayoutTests/http/tests/fetch/serviceworker/thorough/redirect-loop-base-https-other-https.html
|
| @@ -3,10 +3,12 @@
|
| <meta name="timeout" content="long"></meta>
|
| <script src = "/resources/testharness.js"></script>
|
| <script src = "/resources/testharnessreport.js"></script>
|
| +<script src = "/resources/get-host-info.js?pipe=sub"></script>
|
| <script src = "/serviceworker/resources/test-helpers.js"></script>
|
| </head>
|
| <body>
|
| <script>
|
| +var host_info = get_host_info();
|
| function start(t) {
|
| service_worker_test(
|
| '/fetch/script-tests/thorough/redirect-loop.js?-base-https-other-https',
|
| @@ -14,8 +16,10 @@ function start(t) {
|
| t.done();
|
| }
|
| function init(test) {
|
| - return login(test)
|
| - .then(function() {return login_https(test);});
|
| + return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN'])
|
| + .then(function() {
|
| + return login(test, host_info['HTTPS_ORIGIN'],
|
| + host_info['HTTPS_REMOTE_ORIGIN']); });
|
| }
|
| </script>
|
| <script src = "/fetch/resources/init.js"></script>
|
|
|