diff -r 000000000000 -r 6474c204b198 security/manager/ssl/tests/mochitest/stricttransportsecurity/verify.sjs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/security/manager/ssl/tests/mochitest/stricttransportsecurity/verify.sjs Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,47 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +// SJS file that serves un-cacheable responses for STS tests that postMessage +// to the parent saying whether or not they were loaded securely. + +function handleRequest(request, response) +{ + var query = {}; + request.queryString.split('&').forEach(function (val) { + var [name, value] = val.split('='); + query[name] = unescape(value); + }); + + response.setHeader("Cache-Control", "no-cache", false); + response.setHeader("Content-Type", "text/html", false); + + if ('id' in query) { + var outstr = [ + " ", + " subframe for STS", + " ", + " ", + " ", + " STS state verification frame loaded via", + " ", + " ", + " "].join("\n"); + response.write(outstr); + } else { + response.write("ERROR: no id provided"); + } +}