summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/referrerdirective.sjs
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/security/test/csp/referrerdirective.sjs
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/security/test/csp/referrerdirective.sjs')
-rw-r--r--dom/security/test/csp/referrerdirective.sjs36
1 files changed, 36 insertions, 0 deletions
diff --git a/dom/security/test/csp/referrerdirective.sjs b/dom/security/test/csp/referrerdirective.sjs
new file mode 100644
index 000000000..f238ab452
--- /dev/null
+++ b/dom/security/test/csp/referrerdirective.sjs
@@ -0,0 +1,36 @@
+// Used for bug 965727 to serve up really simple scripts reflecting the
+// referrer sent to load this back to the loader.
+
+
+function handleRequest(request, response) {
+ // skip speculative loads.
+
+ var splits = request.queryString.split('&');
+ var params = {};
+ splits.forEach(function(v) {
+ let parts = v.split('=');
+ params[parts[0]] = unescape(parts[1]);
+ });
+
+ var loadType = params['type'];
+ var referrerLevel = 'error';
+
+ if (request.hasHeader('Referer')) {
+ var referrer = request.getHeader('Referer');
+ if (referrer.indexOf("file_testserver.sjs") > -1) {
+ referrerLevel = "full";
+ } else {
+ referrerLevel = "origin";
+ }
+ } else {
+ referrerLevel = 'none';
+ }
+
+ var theScript = 'window.postResult("' + loadType + '", "' + referrerLevel + '");';
+ response.setHeader('Content-Type', 'application/javascript; charset=utf-8', false);
+ response.setHeader('Cache-Control', 'no-cache', false);
+
+ if (request.method != "OPTIONS") {
+ response.write(theScript);
+ }
+}