blob: 7612bab9943e07a4559fee01900db901ec6ea58e [file] [log] [blame]
self.addEventListener('fetch', evt => {
// Retruns an empty response to resolve with_iframe() in the test page.
evt.respondWith(new Response(''));
// Keeps this event alive.
evt.waitUntil(new Promise(function() {}));
});