summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_XHRSendData.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xhr/tests/file_XHRSendData.sjs')
-rw-r--r--dom/xhr/tests/file_XHRSendData.sjs30
1 files changed, 30 insertions, 0 deletions
diff --git a/dom/xhr/tests/file_XHRSendData.sjs b/dom/xhr/tests/file_XHRSendData.sjs
new file mode 100644
index 000000000..0ccbe8a45
--- /dev/null
+++ b/dom/xhr/tests/file_XHRSendData.sjs
@@ -0,0 +1,30 @@
+const CC = Components.Constructor;
+const BinaryInputStream = CC("@mozilla.org/binaryinputstream;1",
+ "nsIBinaryInputStream",
+ "setInputStream");
+
+function handleRequest(request, response)
+{
+ if (request.hasHeader("Content-Type"))
+ response.setHeader("Result-Content-Type",
+ request.getHeader("Content-Type"));
+
+ response.setHeader("Content-Type", "text/plain; charset=ISO-8859-1");
+
+ var body = new BinaryInputStream(request.bodyInputStream);
+ var avail;
+ var bytes = [];
+ while ((avail = body.available()) > 0)
+ Array.prototype.push.apply(bytes, body.readByteArray(avail));
+
+ var data = String.fromCharCode.apply(null, bytes);
+ response.setHeader("Result-Content-Length", "" + data.length);
+ if (data.indexOf("TEST_REDIRECT_STR") >= 0) {
+ var newURL = "http://" + data.split("&url=")[1];
+ response.setStatusLine(null, 307, "redirect");
+ response.setHeader("Location", newURL, false);
+ }
+ else {
+ response.write(data);
+ }
+}