summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/iframesecredirect.sjs
blob: 914391e8f5f93cb6f8953279575608a269075469 (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",
    "https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/iframe.html"
  );
}