summaryrefslogtreecommitdiffstats
path: root/browser/components/search/test/browser/redirect_thrice.sjs
blob: b7c70691622488f0a15b38b55b6378157ccb4c8b (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.sjs", false);
}