diff options
Diffstat (limited to 'dom/plugins/test/mochitest/mixed_case_mime.sjs')
-rw-r--r-- | dom/plugins/test/mochitest/mixed_case_mime.sjs | 7 |
1 files changed, 7 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 0000000000..57b48b4b96 --- /dev/null +++ b/dom/plugins/test/mochitest/mixed_case_mime.sjs @@ -0,0 +1,7 @@ +function handleRequest(request, response) { + response.processAsync(); + response.setHeader("Content-Type", "image/pNG", false); + + response.write("Hello world.\n"); + response.finish(); +} |