summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/redirect_once.sjs
blob: 8b2a8aa55ee70649790ca6c329db2030ded3c4da (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", 301, "Found");
  response.setHeader("Location", "final.html", false);
}