summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/install_event_error_worker.js
blob: abcceb6b6925babcfd622dab4154de79ba429517 (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();
    })
  );
};