summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/iframeunsecredirect.sjs
blob: 32afc824ea09f51aa376b59d737e3e0a636054c4 (plain)
1
2
3
4
5
6
7
8
9
"use strict";

function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 307, "Moved temporarly");
  response.setHeader(
    "Location",
    "http://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/iframe.html"
  );
}