| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Service Worker: CSP control of fetch()</title> | 2 <title>Service Worker: CSP control of fetch()</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-csp-iframe.html'; | 9 var SCOPE = 'resources/fetch-csp-iframe.html'; |
| 10 var SCRIPT = 'resources/fetch-rewrite-worker.js'; | 10 var SCRIPT = 'resources/fetch-rewrite-worker.js'; |
| 11 var host_info = get_host_info(); | 11 var host_info = get_host_info(); |
| 12 service_worker_unregister_and_register(t, SCRIPT, SCOPE) | 12 service_worker_unregister_and_register(t, SCRIPT, SCOPE) |
| 13 .then(function(registration) { | 13 .then(function(registration) { |
| 14 return wait_for_state(t, registration.installing, 'activated'); | 14 return wait_for_state(t, registration.installing, 'activated'); |
| 15 }) | 15 }) |
| 16 .then(function() { return with_iframe(SCOPE); }) | 16 .then(function() { return with_iframe(SCOPE); }) |
| 17 .then(function(frame) { | 17 .then(function(frame) { |
| 18 return new Promise(function(resolve, reject) { | 18 return new Promise(function(resolve, reject) { |
| 19 var channel = new MessageChannel(); | 19 var channel = new MessageChannel(); |
| 20 channel.port1.onmessage = t.step_func(function(e) { | 20 channel.port1.onmessage = t.step_func(function(e) { |
| 21 assert_equals(e.data.results, 'finish'); | 21 assert_equals(e.data.results, 'finish'); |
| 22 frame.remove(); | 22 frame.remove(); |
| 23 service_worker_unregister_and_done(t, SCOPE); | 23 service_worker_unregister_and_done(t, SCOPE); |
| 24 }); | 24 }); |
| 25 frame.contentWindow.postMessage({}, | 25 frame.contentWindow.postMessage({}, |
| 26 host_info['HTTPS_ORIGIN'], | 26 host_info['HTTPS_ORIGIN'], |
| 27 [channel.port2]); | 27 [channel.port2]); |
| 28 }); | 28 }); |
| 29 }) | 29 }) |
| 30 .catch(unreached_rejection(t)); | 30 .catch(unreached_rejection(t)); |
| 31 }, 'Verify CSP control of fetch() in a Service Worker'); | 31 }, 'Verify CSP control of fetch() in a Service Worker'); |
| 32 </script> | 32 </script> |
| OLD | NEW |