summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_path_matching_redirect_server.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/security/test/csp/file_path_matching_redirect_server.sjs')
-rw-r--r--dom/security/test/csp/file_path_matching_redirect_server.sjs12
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/security/test/csp/file_path_matching_redirect_server.sjs b/dom/security/test/csp/file_path_matching_redirect_server.sjs
new file mode 100644
index 0000000000..bed3a1dccf
--- /dev/null
+++ b/dom/security/test/csp/file_path_matching_redirect_server.sjs
@@ -0,0 +1,12 @@
+// Redirect server specifically to handle redirects
+// for path-level host-source matching
+// see https://bugzilla.mozilla.org/show_bug.cgi?id=808292
+
+function handleRequest(request, response) {
+ var newLocation =
+ "http://test1.example.com/tests/dom/security/test/csp/file_path_matching.js";
+
+ response.setStatusLine("1.1", 302, "Found");
+ response.setHeader("Cache-Control", "no-cache", false);
+ response.setHeader("Location", newLocation, false);
+}