summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/fetch/origin/https/index-https.sjs
blob: 5250467ec7a141248ff2919f7d703be1904c76fa (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/https/realindex.html",
    false
  );
}