summaryrefslogtreecommitdiffstats
path: root/dom/file/ipc/tests/temporary.sjs
blob: ab81ab474ef06e16a85d64b22c8203fa0d044162 (plain)
1
2
3
4
5
6
7
function handleRequest(request, response)
{
  response.setHeader("Content-Type", "text/plain", false);

  var data = new Array(1024*64).join("1234567890ABCDEF");
  response.bodyOutputStream.write(data, data.length);
}