summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/serviceworkers/install_event_error_worker.js
blob: c06d648b8732849e690283ec778bd24215ff4c1a (plain)
1
2
3
4
// Worker that errors on receiving an install event.
oninstall = function(e) {
  undefined.doSomething;
};