| Index: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/fetch-response-xhr.https.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/fetch-response-xhr.html b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/fetch-response-xhr.https.html
 | 
| similarity index 65%
 | 
| copy from third_party/WebKit/LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
 | 
| copy to third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/fetch-response-xhr.https.html
 | 
| index 76e5246c3ba6d42d6c9fd9232b0ff339bc9a3eeb..8b66c6051782d74cf2abc0000fa019a6127dd717 100644
 | 
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
 | 
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/fetch-response-xhr.https.html
 | 
| @@ -1,14 +1,21 @@
 | 
|  <!DOCTYPE html>
 | 
|  <title>Service Worker: the response of FetchEvent using XMLHttpRequest</title>
 | 
| -<script src="../resources/testharness.js"></script>
 | 
| -<script src="../resources/testharnessreport.js"></script>
 | 
| -<script src="../resources/get-host-info.js?pipe=sub"></script>
 | 
| -<script src="resources/test-helpers.js"></script>
 | 
| +<script src="/resources/testharness.js"></script>
 | 
| +<script src="/resources/testharnessreport.js"></script>
 | 
| +<script src="resources/get-host-info.sub.js"></script>
 | 
| +<script src="resources/test-helpers.sub.js?pipe=sub"></script>
 | 
|  <script>
 | 
|  async_test(function(t) {
 | 
| -    var SCOPE = 'resources/fetch-response-xhr-iframe.html';
 | 
| +    var SCOPE = 'resources/fetch-response-xhr-iframe.https.html';
 | 
|      var SCRIPT = 'resources/fetch-response-xhr-worker.js';
 | 
|      var host_info = get_host_info();
 | 
| +
 | 
| +    window.addEventListener('message', t.step_func(on_message), false);
 | 
| +    function on_message(e) {
 | 
| +      assert_equals(e.data.results, 'foo, bar');
 | 
| +      t.done();
 | 
| +    }
 | 
| +
 | 
|      service_worker_unregister_and_register(t, SCRIPT, SCOPE)
 | 
|        .then(function(registration) {
 | 
|            return wait_for_state(t, registration.installing, 'activated');
 | 
| @@ -22,7 +29,7 @@ async_test(function(t) {
 | 
|                service_worker_unregister_and_done(t, SCOPE);
 | 
|              });
 | 
|            frame.contentWindow.postMessage({},
 | 
| -                                          host_info['HTTP_ORIGIN'],
 | 
| +                                          host_info['HTTPS_ORIGIN'],
 | 
|                                            [channel.port2]);
 | 
|          })
 | 
|        .catch(unreached_rejection(t));
 | 
| 
 |