| Index: LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
|
| diff --git a/LayoutTests/http/tests/serviceworker/fetch-request-xhr.html b/LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
|
| similarity index 80%
|
| copy from LayoutTests/http/tests/serviceworker/fetch-request-xhr.html
|
| copy to LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
|
| index 9c3c05242505280f1ed438db6bf82604aeec50f5..aaefc3ef865da7b924242d7f281052f51c4f2a14 100644
|
| --- a/LayoutTests/http/tests/serviceworker/fetch-request-xhr.html
|
| +++ b/LayoutTests/http/tests/serviceworker/fetch-response-xhr.html
|
| @@ -1,12 +1,12 @@
|
| <!DOCTYPE html>
|
| -<title>Service Worker: the body of FetchEvent using XMLHttpRequest</title>
|
| +<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/test-helpers.js?pipe=sub"></script>
|
| <script>
|
| async_test(function(t) {
|
| - var SCOPE = 'resources/fetch-request-xhr-iframe.html';
|
| - var SCRIPT = 'resources/fetch-request-xhr-worker.js';
|
| + var SCOPE = 'resources/fetch-response-xhr-iframe.html';
|
| + var SCRIPT = 'resources/fetch-response-xhr-worker.js';
|
| var host_info = get_host_info();
|
| service_worker_unregister_and_register(t, SCRIPT, SCOPE)
|
| .then(function(registration) {
|
| @@ -28,5 +28,5 @@ async_test(function(t) {
|
| host_info['HTTP_ORIGIN']);
|
| })
|
| .catch(unreached_rejection(t));
|
| - }, 'Verify the body of FetchEvent using XMLHttpRequest');
|
| + }, 'Verify the response of FetchEvent using XMLHttpRequest');
|
| </script>
|
|
|