blob: bcf85c5722c7145c4fe9768b8f4d5552c708a08b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
function handleRequest(request, response) {
response.processAsync();
const params = new Map(
request.queryString
.replace("?", "")
.split("&")
.map(s => s.split("="))
);
const delay = params.has("delay") ? params.get("delay") : 300;
const status = params.has("status") ? params.get("status") : 200;
let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
timer.initWithCallback(
() => {
// to avoid garbage collection
timer = null;
response.setStatusLine(request.httpVersion, status, "OK");
response.setHeader("Content-Type", "text/plain", false);
response.setHeader(
"Set-Cookie",
"foo=bar; Max-Age=10; HttpOnly; SameSite=Lax",
true
);
response.write("Some response data");
response.finish();
},
delay,
Ci.nsITimer.TYPE_ONE_SHOT
);
}
|