Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js |
| index d729afa090cfd7c927525b22d0012896d5988a3c..6f936a0063e159667202ded493ac6532624a48d5 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js |
| +++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js |
| @@ -2,6 +2,7 @@ importScripts('worker-testharness.js'); |
| self.oninstall = function(event) { |
| assert_true(event instanceof ExtendableEvent); |
| + assert_true(event instanceof InstallEvent); |
|
falken
2015/10/16 11:58:43
Hm, I was a bit worried this expectation changes e
Marijn Kruisselbrink
2015/10/16 17:23:24
Yeah, the version of global-interface-listing-serv
|
| assert_equals(event.type, 'install'); |
| assert_false(event.cancelable); |
| assert_false(event.bubbles); |