https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b43aa57353147e6ffc3799651de2b246835c2a8a authored by Mike West on 24 July 2018, 12:41:46 UTC
Correctly propagate request initiator for 'noopener'
Tip revision: b43aa57
service-worker.js
self.addEventListener('fetch', e => {
  if (e.request.url.indexOf('/non-existent-worklet-script.js') != -1)
    e.respondWith(fetch('empty-worklet-script.js'));
});
back to top