Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1025)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/onactivate-throw-error-worker.js

Issue 2873373004: Remove duplicate service worker test (Closed)
Patch Set: Un-register workers following test completion Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Ensure we can handle multiple activate handlers. One handler throwing an
2 // error should cause the event dispatch to be treated as having unhandled
3 // errors.
4 self.addEventListener('activate', function(event) {});
5 self.addEventListener('activate', function(event) {});
6 self.addEventListener('activate', function(event) { throw new Error(); });
7 self.addEventListener('activate', function(event) {});
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/onactivate-throw-error-with-empty-onerror-worker.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698