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