summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_bug802872.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/security/test/csp/file_bug802872.sjs')
-rw-r--r--dom/security/test/csp/file_bug802872.sjs6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/security/test/csp/file_bug802872.sjs b/dom/security/test/csp/file_bug802872.sjs
new file mode 100644
index 0000000000..6877bd5833
--- /dev/null
+++ b/dom/security/test/csp/file_bug802872.sjs
@@ -0,0 +1,6 @@
+function handleRequest(request, response) {
+ response.setHeader("Cache-Control", "no-cache", false);
+ response.setHeader("Content-Type", "text/event-stream", false);
+ response.write("data: eventsource response from server!");
+ response.write("\n\n");
+}