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