chromium/third_party/blink/web_tests/http/tests/devtools/service-workers/resources/service-workers-bypass-for-network-navigation-worker.js

self.addEventListener('fetch', (event) => {
  event.respondWith(new Response(
      '<body>From the service worker</body>',
      {
        headers: [['content-type', 'text/html']]
      }));
});