summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/reporting/support/not-embeddable-frame.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/web-platform/tests/content-security-policy/reporting/support/not-embeddable-frame.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/content-security-policy/reporting/support/not-embeddable-frame.py b/testing/web-platform/tests/content-security-policy/reporting/support/not-embeddable-frame.py
new file mode 100644
index 0000000000..9e65b42435
--- /dev/null
+++ b/testing/web-platform/tests/content-security-policy/reporting/support/not-embeddable-frame.py
@@ -0,0 +1,10 @@
+def main(request, response):
+ headers = []
+ if request.GET.first(b'xFrameOptions', None):
+ headers.append((b'X-Frame-Options', request.GET[b'xFrameOptions']))
+
+ csp_header = b'Content-Security-Policy-Report-Only' \
+ if request.GET.first(b'reportOnly', None) == b'true' else b'Content-Security-Policy'
+ headers.append((csp_header, b"frame-ancestors 'none'; report-uri /reporting/resources/report.py?op=put&reportID=" + request.GET[b'reportID']))
+
+ return headers, b'{}'