Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/stop-worker-during-respond-with.html | 
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/stop-worker-during-respond-with.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/stop-worker-during-respond-with.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..1eb65b30f0460853fdc2567d0a30a4564aef43a3 | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/stop-worker-during-respond-with.html | 
| @@ -0,0 +1,28 @@ | 
| +<!DOCTYPE html> | 
| +<title>Service Worker: Stopping the worker during responding to a fetch</title> | 
| 
 
falken
2017/04/18 05:05:34
add comment: This is in chromium/ because it relie
 
shimazu
2017/04/19 05:49:47
Done.
 
 | 
| +<script src="../../resources/testharness.js"></script> | 
| +<script src="../../resources/testharnessreport.js"></script> | 
| +<script src="../resources/test-helpers.js"></script> | 
| +<script> | 
| + | 
| +promise_test(t => { | 
| + var SCOPE = 'resources/slow-fetch-and-stop-worker-iframe.html'; | 
| + var SCRIPT = 'resources/respondwith-fetch-worker.js'; | 
| + return service_worker_unregister_and_register(t, SCRIPT, SCOPE) | 
| + .then(r => { | 
| + add_completion_callback(() => r.unregister()); | 
| + return wait_for_state(t, r.installing, 'activated'); | 
| + }) | 
| + .then(() => { return with_iframe(SCOPE, {auto_remove: true}); }) | 
| + .then(f => { | 
| + return new Promise(resolve => { | 
| + addEventListener('message', resolve); | 
| + f.contentWindow.postMessage('run', '*'); | 
| + }) | 
| + }) | 
| + .then(e => { | 
| + assert_equals(e.data, 'Rejected successfully'); | 
| + }); | 
| + }, 'Stopping the worker during responding fetch event cancels the request.'); | 
| + | 
| +</script> |