blob: cc2f6d7e5e78fda2c74e9613897931b1eeadbb53 [file] [log] [blame]
// Ensure we can handle multiple install handlers. One handler throwing an
// error should cause the event dispatch to be treated as having unhandled
// errors.
self.addEventListener('install', function(event) {});
self.addEventListener('install', function(event) {});
self.addEventListener('install', function(event) { throw new Error(); });
self.addEventListener('install', function(event) {});