mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
7 lines
218 B
JavaScript
7 lines
218 B
JavaScript
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);
|
|
}
|