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