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

function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 302, "Moved Temporarily");
  response.setHeader("Location", "policy_websitefilter_block.html");
}