summaryrefslogtreecommitdiffstats
path: root/dom/base/test/chrome/bug884693.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/chrome/bug884693.sjs')
-rw-r--r--dom/base/test/chrome/bug884693.sjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/base/test/chrome/bug884693.sjs b/dom/base/test/chrome/bug884693.sjs
new file mode 100644
index 000000000..30d4f8a03
--- /dev/null
+++ b/dom/base/test/chrome/bug884693.sjs
@@ -0,0 +1,8 @@
+function handleRequest(request, response)
+{
+ let [status, statusText, body] = request.queryString.split("&");
+ response.setStatusLine(request.httpVersion, status, statusText);
+ response.setHeader("Content-Type", "text/xml", false);
+ response.setHeader("Content-Length", "" + body.length, false);
+ response.write(body);
+}