chromium/chrome/test/data/background_fetch/background_fetch_iframe_nowait.html

<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <script src="../result_queue.js"></script>
  </head>
  <body>
    <script>
      navigator.serviceWorker.ready.then(swRegistration => {
        swRegistration.backgroundFetch.fetch(
            'iframe-fetch', '/background_fetch/types_of_cheese.txt');
        window.parent.postMessage('ok', '*');
      });
    </script>
  </body>
</html>