https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3e2168c907f6026f4a79e6359ca787c799b2113f authored by Tommy Steimel on 12 April 2018, 15:39:13 UTC
Enable Modern Media Controls and fix layout tests
Tip revision: 3e2168c
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