summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/oninstall-throw-error-then-cancel-worker.js
blob: c2c499ab1a3757aa4d1d57524eea3646302c226d (plain)
1
2
3
self.onerror = function(event) { return true; };

self.addEventListener('install', function(event) { throw new Error(); });