mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
15 lines
397 B
JavaScript
15 lines
397 B
JavaScript
// For now this test only calls update to verify that our registration
|
|
// job queueing works properly when called from the worker thread. We should
|
|
// test actual update scenarios with a SJS test.
|
|
onmessage = function(e) {
|
|
self.update();
|
|
clients.getServiced().then(function(c) {
|
|
if (c.length == 0) {
|
|
// We cannot proceed.
|
|
return;
|
|
}
|
|
|
|
c[0].postMessage('FINISH');
|
|
});
|
|
}
|