summaryrefslogtreecommitdiffstats
path: root/dom/base/test/bug461735-redirect1.sjs
blob: cf00e8b8c43cc6f75c4e86bb112a0b317033fc42 (plain)
1
2
3
4
5
6
7
8
function handleRequest(request, response) {
  response.setStatusLine(null, 302, "Found");
  response.setHeader(
    "Location",
    "http://example.com/tests/dom/base/test/bug461735-post-redirect.js",
    false
  );
}