blob: c60c3ebab7754c8ed71c77665e482a4671e0da48 (
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
35
36
37
|
function setOurState(data) {
x = { data: data, QueryInterface: function(iid) { return this } };
x.wrappedJSObject = x;
setObjectState("bug602838", x);
}
function getOurState() {
var data;
getObjectState("bug602838", function(x) {
// x can be null if no one has set any state yet
if (x) {
data = x.wrappedJSObject.data;
}
});
return data;
}
function handleRequest(request, response)
{
if (request.queryString) {
let blockedResponse = getOurState();
if (typeof(blockedResponse) == "object") {
blockedResponse.finish();
setOurState(null);
} else {
setOurState("unblocked");
}
return;
}
response.setHeader("Cache-Control", "no-cache", false);
response.setHeader("Content-Type", "text/javascript", false);
response.write("ok(asyncRan, 'Async script should have run first.'); firstRan = true;");
if (getOurState() != "unblocked") {
response.processAsync();
setOurState(response);
}
}
|