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

Unified Diff: content/test/data/service_worker/imports_bust_memcache.html

Issue 579183002: Migrate browsertest to use ServiceWorkerRegistration.unregister() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/service_worker/imports_bust_memcache.html
diff --git a/content/test/data/service_worker/imports_bust_memcache.html b/content/test/data/service_worker/imports_bust_memcache.html
index cc0db4f494046130898a3c2aac557ca2494fb94f..2fc8af574e3144f735b42bbc4842a8f4c106792c 100644
--- a/content/test/data/service_worker/imports_bust_memcache.html
+++ b/content/test/data/service_worker/imports_bust_memcache.html
@@ -8,14 +8,18 @@
var scope = 'imports_bust_memcache_scope/';
var script = 'worker_with_one_import.js';
-navigator.serviceWorker.unregister(scope)
+navigator.serviceWorker.getRegistration(scope)
+.then(function(registration) {
+ if (registration)
+ return registration.unregister();
+})
.then(function(_) {
console.log('initial unregistration done');
return navigator.serviceWorker.register(script, {scope: scope});
})
-.then(function(_) {
+.then(function(registration) {
console.log('initial registration done');
- return navigator.serviceWorker.unregister(scope);
+ return registration.unregister();
})
.then(function(_) {
console.log('unregistration done');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698