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

Unified Diff: LayoutTests/http/tests/serviceworker/unregister-then-register.html

Issue 776373003: ServiceWorker cleanup: remove wait_for_update() in favor of r.installing in most tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/unregister-then-register.html
diff --git a/LayoutTests/http/tests/serviceworker/unregister-then-register.html b/LayoutTests/http/tests/serviceworker/unregister-then-register.html
index 3b894ae9411fed25c839cfc3755a0ac7fc48c81a..08dd8c3a7eb3efa4de44667df309ed729f0aeeca 100644
--- a/LayoutTests/http/tests/serviceworker/unregister-then-register.html
+++ b/LayoutTests/http/tests/serviceworker/unregister-then-register.html
@@ -13,10 +13,7 @@ async_test(function(t) {
service_worker_unregister_and_register(t, worker_url, scope)
.then(function(r) {
registration = r;
- return wait_for_update(t, registration);
- })
- .then(function(worker) {
- return wait_for_state(t, worker, 'activated');
+ return wait_for_state(t, r.installing, 'activated');
})
.then(function() {
return registration.unregister();
@@ -39,10 +36,7 @@ async_test(function(t) {
service_worker_unregister_and_register(t, worker_url, scope)
.then(function(r) {
registration = r;
- return wait_for_update(t, registration);
- })
- .then(function(worker) {
- return wait_for_state(t, worker, 'activated');
+ return wait_for_state(t, r.installing, 'activated');
})
.then(function() {
return with_iframe(scope);
@@ -71,10 +65,7 @@ async_test(function(t) {
service_worker_unregister_and_register(t, worker_url, scope)
.then(function(r) {
registration = r;
- return wait_for_update(t, registration);
- })
- .then(function(worker) {
- return wait_for_state(t, worker, 'activated');
+ return wait_for_state(t, r.installing, 'activated');
})
.then(function() {
return with_iframe(scope);
@@ -108,10 +99,7 @@ async_test(function(t) {
service_worker_unregister_and_register(t, worker_url, scope)
.then(function(r) {
registration = r;
- return wait_for_update(t, registration);
- })
- .then(function(worker) {
- return wait_for_state(t, worker, 'activated');
+ return wait_for_state(t, r.installing, 'activated');
})
.then(function() {
return with_iframe(scope);

Powered by Google App Engine
This is Rietveld 408576698