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