| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Service Worker: the response of FetchEvent using XMLHttpRequest</title> | 2 <title>Service Worker: the response of FetchEvent using XMLHttpRequest</title> |
| 3 <script src="/resources/testharness.js"></script> | 3 <script src="/resources/testharness.js"></script> |
| 4 <script src="/resources/testharnessreport.js"></script> | 4 <script src="/resources/testharnessreport.js"></script> |
| 5 <script src="resources/get-host-info.sub.js"></script> | 5 <script src="/common/get-host-info.sub.js"></script> |
| 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> | 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> |
| 7 <script> | 7 <script> |
| 8 async_test(function(t) { | 8 async_test(function(t) { |
| 9 var SCOPE = 'resources/fetch-response-xhr-iframe.https.html'; | 9 var SCOPE = 'resources/fetch-response-xhr-iframe.https.html'; |
| 10 var SCRIPT = 'resources/fetch-response-xhr-worker.js'; | 10 var SCRIPT = 'resources/fetch-response-xhr-worker.js'; |
| 11 var host_info = get_host_info(); | 11 var host_info = get_host_info(); |
| 12 | 12 |
| 13 window.addEventListener('message', t.step_func(on_message), false); | 13 window.addEventListener('message', t.step_func(on_message), false); |
| 14 function on_message(e) { | 14 function on_message(e) { |
| 15 assert_equals(e.data.results, 'foo, bar'); | 15 assert_equals(e.data.results, 'foo, bar'); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 28 frame.remove(); | 28 frame.remove(); |
| 29 service_worker_unregister_and_done(t, SCOPE); | 29 service_worker_unregister_and_done(t, SCOPE); |
| 30 }); | 30 }); |
| 31 frame.contentWindow.postMessage({}, | 31 frame.contentWindow.postMessage({}, |
| 32 host_info['HTTPS_ORIGIN'], | 32 host_info['HTTPS_ORIGIN'], |
| 33 [channel.port2]); | 33 [channel.port2]); |
| 34 }) | 34 }) |
| 35 .catch(unreached_rejection(t)); | 35 .catch(unreached_rejection(t)); |
| 36 }, 'Verify the response of FetchEvent using XMLHttpRequest'); | 36 }, 'Verify the response of FetchEvent using XMLHttpRequest'); |
| 37 </script> | 37 </script> |
| OLD | NEW |