summaryrefslogtreecommitdiffstats
path: root/docshell/test/browser/redirect_to_example.sjs
blob: eef5e49f439a736ea1f5866dbb3846716ad58e49 (plain)
1
2
3
4
function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 302, "Moved Permanently");
  response.setHeader("Location", "http://example");
}