summaryrefslogtreecommitdiffstats
path: root/dom/base/test/bug457746.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/bug457746.sjs')
-rw-r--r--dom/base/test/bug457746.sjs10
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/base/test/bug457746.sjs b/dom/base/test/bug457746.sjs
new file mode 100644
index 0000000000..e93e7e4f8d
--- /dev/null
+++ b/dom/base/test/bug457746.sjs
@@ -0,0 +1,10 @@
+function handleRequest(request, response) {
+ response.setHeader("Content-Type", "text/plain; charset=ISO-8859-1", false);
+ const body = [0xc1];
+ var bos = Cc["@mozilla.org/binaryoutputstream;1"].createInstance(
+ Ci.nsIBinaryOutputStream
+ );
+ bos.setOutputStream(response.bodyOutputStream);
+
+ bos.writeByteArray(body);
+}