| Index: LayoutTests/http/tests/fetch/serviceworker/thorough/auth-other-https.html
|
| diff --git a/LayoutTests/http/tests/fetch/serviceworker/thorough/auth-other-https.html b/LayoutTests/http/tests/fetch/serviceworker/thorough/auth-other-https.html
|
| index 00da559cec6e24149b79c4dfc5a05d3780a799c4..4cab9b3e173287d580bdeff72565238fcbc9cc63 100644
|
| --- a/LayoutTests/http/tests/fetch/serviceworker/thorough/auth-other-https.html
|
| +++ b/LayoutTests/http/tests/fetch/serviceworker/thorough/auth-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/auth.js?-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(host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN'], test)
|
| + .then(function() {
|
| + return login(host_info['HTTPS_ORIGIN'], host_info['HTTPS_REMOTE_ORIGIN'],
|
| + test);});
|
| }
|
| </script>
|
| <script src = "/fetch/resources/init.js"></script>
|
|
|