summaryrefslogtreecommitdiffstats
path: root/browser/components/search/test/browser/redirect_ad.sjs
blob: 36be567d3f1d4b7d26aa1c4757a582007596c905 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * 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);
  response.setHeader("Cache-Control", "no-cache, must-revalidate", false);
}