Index: LayoutTests/http/tests/serviceworker/fetch-event-respond-with-stops-propagation.html |
diff --git a/LayoutTests/http/tests/serviceworker/fetch-event-async-respond-with.html b/LayoutTests/http/tests/serviceworker/fetch-event-respond-with-stops-propagation.html |
similarity index 88% |
copy from LayoutTests/http/tests/serviceworker/fetch-event-async-respond-with.html |
copy to LayoutTests/http/tests/serviceworker/fetch-event-respond-with-stops-propagation.html |
index 48d9680688d6b42957b299c394198fdaab92f7a7..a7fcacfcca53ca45d4c694a4222c1e34401ad333 100644 |
--- a/LayoutTests/http/tests/serviceworker/fetch-event-async-respond-with.html |
+++ b/LayoutTests/http/tests/serviceworker/fetch-event-respond-with-stops-propagation.html |
@@ -5,7 +5,8 @@ |
<script src="resources/test-helpers.js"></script> |
<script> |
promise_test(function(t) { |
- var script = 'resources/fetch-event-async-respond-with-worker.js'; |
+ var script = |
+ 'resources/fetch-event-respond-with-stops-propagation-worker.js'; |
var scope = 'resources/simple.html'; |
return service_worker_unregister_and_register(t, script, scope) |
@@ -30,5 +31,5 @@ promise_test(function(t) { |
assert_equals(message, 'PASS'); |
return service_worker_unregister_and_done(t, scope); |
}) |
- }, 'Calling respondWith asynchronously throws an exception'); |
+ }, 'respondWith() invokes stopImmediatePropagation()'); |
</script> |