summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/fetch/redirect.sjs
blob: dab558f4a84650724ac7e0c623111e24f456c63b (plain)
1
2
3
4
function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 301, "Moved Permanently");
  response.setHeader("Location", "synthesized-redirect-twice-real-file.txt");
}