summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/oninstall-throw-error-with-empty-onerror-worker.js
blob: 8f56d1bf14910132d5656de020d6aafaf9623807 (plain)
1
2
self.addEventListener('error', function(event) {});
self.addEventListener('install', function(event) { throw new Error(); });