| Index: LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
|
| diff --git a/LayoutTests/http/tests/serviceworker/install-phase-event-waituntil.html b/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
|
| similarity index 94%
|
| rename from LayoutTests/http/tests/serviceworker/install-phase-event-waituntil.html
|
| rename to LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
|
| index 8f8d46b687cc56c4bc4c3c50d84a10aec6ff91cd..430cc67c98f69b7b36547569d1d1f74f176ab76a 100644
|
| --- a/LayoutTests/http/tests/serviceworker/install-phase-event-waituntil.html
|
| +++ b/LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html
|
| @@ -1,5 +1,5 @@
|
| <!DOCTYPE html>
|
| -<title>InstallPhaseEvent: waitUntil</title>
|
| +<title>ExtendableEvent: waitUntil</title>
|
| <script src="../resources/testharness.js"></script>
|
| <script src="../resources/testharnessreport.js"></script>
|
| <script src="resources/test-helpers.js"></script>
|
| @@ -11,7 +11,7 @@
|
| var properties = {timeout: 5500};
|
|
|
| function runTest(test, scope, onRegister) {
|
| - var script = 'resources/install-phase-event-waituntil.js';
|
| + var script = 'resources/extendable-event-waituntil.js';
|
| service_worker_unregister_and_register(test, script, scope)
|
| .then(function(registration) {
|
| return get_newest_worker(registration);
|
| @@ -116,7 +116,7 @@ async_test(function(t) {
|
| .catch(unreached_rejection(t));
|
| };
|
| runTest(t, scope, onRegister);
|
| - }, 'Test InstallPhaseEvent multiple waitUntil fulfilled.', properties);
|
| + }, 'Test ExtendableEvent multiple waitUntil fulfilled.', properties);
|
|
|
| async_test(function(t) {
|
| var scope = 'activate-reject-precedence';
|
| @@ -128,5 +128,5 @@ async_test(function(t) {
|
| .catch(unreached_rejection(t));
|
| };
|
| runTest(t, scope, onRegister);
|
| - }, 'Test InstallPhaseEvent waitUntil reject precedence.', properties);
|
| + }, 'Test ExtendableEvent waitUntil reject precedence.', properties);
|
| </script>
|
|
|