summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/fetch/origin/index-to-https.sjs
blob: 2505c03686eff8f9bde3c6bfef35f0056bb37e4d (plain)
1
2
3
4
5
6
7
8
function handleRequest(request, response) {
  response.setStatusLine(null, 308, "Permanent Redirect");
  response.setHeader(
    "Location",
    "https://example.org/tests/dom/serviceworkers/test/fetch/origin/realindex.html",
    false
  );
}