summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/mochitest/redirection.sjs
blob: 873a3d41bae68a92380e71340c3e3e2fab85e7f4 (plain)
1
2
3
4
5
6
"use strict";

function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 302);
  response.setHeader("Location", "./dummy_page.html");
}