summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/intercepted_channel_process_swap_worker.js
blob: ccc74bc89567353859f5da6a44e3c23d29fc7bc3 (plain)
1
2
3
4
5
6
7
onfetch = e => {
  const url = new URL(e.request.url).searchParams.get("respondWith");

  if (url) {
    e.respondWith(fetch(url));
  }
};