summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/ajax/offline/namespace1/redirectToDifferentOrigin.sjs
blob: 22e9e146c04e63fd90a84ae9c3ff49b8493d040b (plain)
1
2
3
4
5
6
function handleRequest(request, response)
{
  response.setStatusLine(request.httpVersion, 307, "Moved temporarly");
  response.setHeader("Location", "http://example.org/tests/dom/tests/mochitest/ajax/offline/fallback2.html");
  response.setHeader("Content-Type", "text/html");
}