summaryrefslogtreecommitdiffstats
path: root/dom/base/test/bug435425_redirect.sjs
blob: e8c8f2aa4a77326888d3f220e1df7ff4dea9c3df (plain)
1
2
3
4
5
6
function handleRequest(request, response)
{
  response.setStatusLine(null, 302, "Moved");
  response.setHeader("Location", "http://nosuchdomain.localhost", false);
}