summaryrefslogtreecommitdiffstats
path: root/dom/base/test/bug426308-redirect.sjs
blob: 331f31d96a9a42d345b88276cdf943e27343263b (plain)
1
2
3
4
function handleRequest(request, response) {
  response.setStatusLine(null, 302, "Found");
  response.setHeader("Location", request.queryString, false);
}