summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/redirect_thrice.sjs
blob: 55154a736e2889c09a3c6e35b2a74adbe9759419 (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", 302, "Found");
  response.setHeader("Location", "redirect_twice_perma.sjs", false);
}