summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/install-event-type-worker.js
blob: d729afa090cfd7c927525b22d0012896d5988a3c (plain)
1
2
3
4
5
6
7
8
importScripts('worker-testharness.js');

self.oninstall = function(event) {
    assert_true(event instanceof ExtendableEvent);
    assert_equals(event.type, 'install');
    assert_false(event.cancelable);
    assert_false(event.bubbles);
};