summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/mixed_case_mime.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/plugins/test/mochitest/mixed_case_mime.sjs')
-rw-r--r--dom/plugins/test/mochitest/mixed_case_mime.sjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/plugins/test/mochitest/mixed_case_mime.sjs b/dom/plugins/test/mochitest/mixed_case_mime.sjs
new file mode 100644
index 000000000..3c29b8289
--- /dev/null
+++ b/dom/plugins/test/mochitest/mixed_case_mime.sjs
@@ -0,0 +1,8 @@
+function handleRequest(request, response)
+{
+ response.processAsync();
+ response.setHeader("Content-Type", "application/x-Second-Test", false);
+
+ response.write("Hello world.\n");
+ response.finish();
+}