<!DOCTYPE html>
<script>
// See ServiceWorkerBrowserTest ImportsBustMemcache.
// Content-Shell data persists so unregister first to clear old data.
// Register, unregister, then reregister. The browsertest examines the
// state of the scriptcache to ensure the script and import are cached.
var scope = 'imports_bust_memcache_scope/';
var script = 'worker_with_one_import.js';
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(registration) {
console.log('initial registration done');
return registration.unregister();
})
.then(function(_) {
console.log('unregistration done');
return navigator.serviceWorker.register(script, {scope: scope});
})
.then(function(_) {
console.log('second registration done');
document.title = 'OK'; // Titlewatcher looks for this.
})
.catch(function(e) {
document.title = 'FAILED';
});
</script>