https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 52900e8f91575e90ed01bfeacaf8f2ad7c55529d authored by James Graham on 21 March 2018, 15:54:47 UTC
commit f712edbaad27ef27fde23681673a8e7b2e4b8534
Tip revision: 52900e8
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