diff options
Diffstat (limited to 'dom/security/test/https-first/file_subdocument_downgrade.sjs')
-rw-r--r-- | dom/security/test/https-first/file_subdocument_downgrade.sjs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/security/test/https-first/file_subdocument_downgrade.sjs b/dom/security/test/https-first/file_subdocument_downgrade.sjs new file mode 100644 index 0000000000..53ced94ba8 --- /dev/null +++ b/dom/security/test/https-first/file_subdocument_downgrade.sjs @@ -0,0 +1,8 @@ +function handleRequest(request, response) { + if (request.scheme === "https") { + response.setStatusLine("1.1", 429, "Too Many Requests"); + } else { + response.setHeader("Content-Type", "text/html", false); + response.write("<!doctype html><html><body></body></html>"); + } +} |