summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/fetch/requesturl/redirect.sjs
blob: ae50a78aef9653bf26f5e927b9131a8519f279e1 (plain)
1
2
3
4
5
6
7
8
function handleRequest(request, response) {
  response.setStatusLine(null, 308, "Permanent Redirect");
  response.setHeader(
    "Location",
    "http://example.org/tests/dom/serviceworkers/test/fetch/requesturl/secret.html",
    false
  );
}