summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/redirect_twice_perma.sjs
blob: a40abd4170ac037528b96469afef76bccae6670a (plain)
1
2
3
4
5
6
7
8
9
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

function handleRequest(request, response) {
  response.setStatusLine("1.1", 301, "Found");
  response.setHeader("Location", "redirect_once.sjs", false);
}