chromium/chrome/test/data/banners/nested_sw_test_page.html

<html>
  <head>
    <title>Web app banner test page</title>
    <script src="main.js"></script>
    <script>
      // If a "manifest=/path/to/manifest.json" query argument is provided to
      // the URL accessing this page, that path is injected as the manifest tag.
      // Otherwise, "manifest.json" is used as the manifest tag.
      addManifestLinkTag();
    </script>
    <script>
      // Register page scoped service worker.
      navigator.serviceWorker.register('service_worker_with_no_fetch_handler.js', { scope: 'nested_sw_test_page.html' });

      // Register app scoped service worker.
      navigator.serviceWorker.register('service_worker.js');
    </script>
  </head>
  <body onload="initialize()">
    Do-nothing page with a manifest and a service worker for '/' and for 'nested_sw_test_page.html'.
  </body>
</html>