summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/redirect_once.sjs
blob: b9ccd0829a3e4c7d609a8b0e505337188fbaeaaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

function handleRequest(request, response) {
  response.setStatusLine("1.1", 301, "Found");
  response.setHeader(
    "Location",
    "http://test1.example.com/tests/toolkit/components/places/tests/browser/final.html",
    false
  );
}