diff options
Diffstat (limited to 'dom/plugins/test/mochitest/mixed_case_mime.sjs')
-rw-r--r-- | dom/plugins/test/mochitest/mixed_case_mime.sjs | 8 |
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 0000000000..1901bb74d8 --- /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", "image/pNG", false); + + response.write("Hello world.\n"); + response.finish(); +} |