| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Service Worker: CORS XHR of fetch()</title> | 2 <title>Service Worker: fetch(e.request) with GC</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.js?pipe=sub"></script> | 5 <script src="../../resources/get-host-info.js?pipe=sub"></script> |
| 6 <script src="resources/test-helpers.js"></script> | 6 <script src="../resources/test-helpers.js"></script> |
| 7 <body> | 7 <body> |
| 8 <!-- |
| 9 This test is placed on chromium/directory because it tests very blink specific |
| 10 problems related to V8 and bindings. |
| 11 --> |
| 8 <script> | 12 <script> |
| 9 async_test(function(t) { | 13 async_test(function(t) { |
| 10 var SCOPE = 'resources/fetch-cors-xhr-iframe.html'; | 14 var SCOPE = 'resources/fetch-request-with-gc-iframe.html'; |
| 11 var SCRIPT = 'resources/fetch-rewrite-worker.js'; | 15 var SCRIPT = 'resources/fetch-request-with-gc.js'; |
| 12 var host_info = get_host_info(); | 16 var host_info = get_host_info(); |
| 13 | 17 |
| 14 login(t, host_info.HTTP_ORIGIN, host_info.HTTP_REMOTE_ORIGIN) | 18 login(t, host_info.HTTP_ORIGIN, host_info.HTTP_REMOTE_ORIGIN) |
| 15 .then(function() { | 19 .then(function() { |
| 16 return service_worker_unregister_and_register(t, SCRIPT, SCOPE); | 20 return service_worker_unregister_and_register(t, SCRIPT, SCOPE); |
| 17 }) | 21 }) |
| 18 .then(function(registration) { | 22 .then(function(registration) { |
| 19 return wait_for_state(t, registration.installing, 'activated'); | 23 return wait_for_state(t, registration.installing, 'activated'); |
| 20 }) | 24 }) |
| 21 .then(function() { return with_iframe(SCOPE); }) | 25 .then(function() { return with_iframe(SCOPE); }) |
| 22 .then(function(frame) { | 26 .then(function(frame) { |
| 23 return new Promise(function(resolve, reject) { | 27 return new Promise(function(resolve, reject) { |
| 24 var channel = new MessageChannel(); | 28 var channel = new MessageChannel(); |
| 25 channel.port1.onmessage = t.step_func(function(e) { | 29 channel.port1.onmessage = t.step_func(function(e) { |
| 26 assert_equals(e.data.results, 'finish'); | 30 assert_equals(e.data.results, 'finish'); |
| 27 frame.remove(); | 31 frame.remove(); |
| 28 service_worker_unregister_and_done(t, SCOPE); | 32 service_worker_unregister_and_done(t, SCOPE); |
| 29 }); | 33 }); |
| 30 frame.contentWindow.postMessage({}, | 34 frame.contentWindow.postMessage({}, |
| 31 host_info['HTTP_ORIGIN'], | 35 host_info['HTTP_ORIGIN'], |
| 32 [channel.port2]); | 36 [channel.port2]); |
| 33 }); | 37 }); |
| 34 }) | 38 }) |
| 35 .catch(unreached_rejection(t)); | 39 .catch(unreached_rejection(t)); |
| 36 }, 'Verify CORS XHR of fetch() in a Service Worker'); | 40 }, 'Calling gc and delaying calling fetch in onFetch should not lead to crash'
); |
| 37 </script> | 41 </script> |
| 38 </body> | 42 </body> |
| OLD | NEW |