OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <title>register</title> | |
3 <script src="test-helpers.js"></script> | |
4 <body> | |
5 <script> | |
6 navigator.serviceWorker.register('empty-worker.js', {scope: 'scope-register'}) | |
7 .then(function(registration) { | |
8 registration.unregister(); | |
9 window.parent.postMessage('PASS', '*'); | |
10 }) | |
11 .catch(function(error) { | |
12 window.parent.postMessage('FAIL: ' + error.message, '*'); | |
13 }); | |
14 </script> | |
15 </body> | |
OLD | NEW |