summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/serviceworkers/gzip_redirect_worker.js
blob: 72aeba22232d85fb8cc3d0cb8529bbf935251b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
self.addEventListener('fetch', function (event) {
  if (!event.request.url.endsWith('sw_clients/does_not_exist.html')) {
    return;
  }

  event.respondWith(new Response('', {
    status: 301,
    statusText: 'Moved Permanently',
    headers: {
      'Location': 'refresher_compressed.html'
    }
  }));
});