blob: 508cde564407e0439bd9b77ab7f564301a55650f (
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
38
|
var timer;
function armTimer(response) {
timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
timer.initWithCallback(
function () {
if (
getState("docwritepreloadssecond") == "second" &&
getState("docwritepreloadsthird") == "third"
) {
response.write(
"ok(true, 'Second and third scripts should have started loading while the first one is loading');"
);
response.finish();
} else {
armTimer(response);
}
},
20,
Ci.nsITimer.TYPE_ONE_SHOT
);
}
function handleRequest(request, response) {
response.setHeader("Cache-Control", "no-cache", false);
response.setHeader("Content-Type", "text/javascript", false);
if (request.queryString.includes("first")) {
response.write("// first\n");
response.processAsync();
armTimer(response);
} else if (request.queryString.includes("second")) {
response.write("// second\n");
setState("docwritepreloadssecond", "second");
} else {
response.write("// third\n");
setState("docwritepreloadsthird", "third");
}
}
|