1
0
Fork 0
firefox/layout/generic/test/slow-stylesheet.sjs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
532 B
JavaScript

// Make sure our timer stays alive.
let gTimer;
function handleRequest(request, response) {
response.setHeader("Content-Type", "text/css", false);
response.setStatusLine("1.1", 200, "OK");
response.processAsync();
gTimer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
// Wait for 1s before responding; this should usually make sure this load comes in last.
gTimer.init(
() => {
response.write("body { color: lime }");
response.finish();
},
1000,
Ci.nsITimer.TYPE_ONE_SHOT
);
}