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