blob: 0c6af7aa85ad043d2d9fdc270cfb23ae49092e11 [file] [log] [blame]
self.addEventListener('periodicsync', async event => {
const clients = await self.clients.matchAll({ includeUncontrolled: true });
for (const client of clients)
client.postMessage('test-tag-from-devtools');
});