tenfourfox/dom/workers/test/serviceworkers/install_event_error_worker.js

5 lines
107 B
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00:00
// Worker that errors on receiving an install event.
oninstall = function(e) {
undefined.doSomething;
};