summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/contextMenu/bug1798178.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'browser/base/content/test/contextMenu/bug1798178.sjs')
-rw-r--r--browser/base/content/test/contextMenu/bug1798178.sjs9
1 files changed, 9 insertions, 0 deletions
diff --git a/browser/base/content/test/contextMenu/bug1798178.sjs b/browser/base/content/test/contextMenu/bug1798178.sjs
new file mode 100644
index 0000000000..790dc2bee5
--- /dev/null
+++ b/browser/base/content/test/contextMenu/bug1798178.sjs
@@ -0,0 +1,9 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+function handleRequest(request, response) {
+ response.setHeader("Content-Type", "text/plain", false);
+ response.setHeader("X-Content-Type-Options", "nosniff");
+ response.write("Hello");
+}