summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/install_event_error_worker.js
blob: e4208705b3eafd9d394c80f1b71a4a29b7874cdf (plain)
1
2
3
4
5
6
7
8
9
// Worker that errors on receiving an install event.
oninstall = function(e) {
  e.waitUntil(
    new Promise(function(resolve, reject) {
      undefined.doSomething;
      resolve();
    })
  );
};