summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/serviceworkers/fetch/requesturl/redirect.sjs
blob: 7b92fec20d86e9b5ec3efc459fb4fcf915c29bda (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/requesturl/secret.html", false);
}