Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: LayoutTests/http/tests/serviceworker/extendable-event-waituntil.html

Issue 588383002: Service Workers: InstallPhaseEvent -> ExtendableEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/http/tests/serviceworker/install-phase-event-waituntil.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698