mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
accde6c016
--HG-- extra : rebase_source : f8ec0171cab2d0fbcc1975c5e455162ebbeb2690
16 lines
489 B
JavaScript
16 lines
489 B
JavaScript
var timer = null;
|
|
|
|
function handleRequest(request, response)
|
|
{
|
|
response.processAsync();
|
|
timer = Components.classes["@mozilla.org/timer;1"]
|
|
.createInstance(Components.interfaces.nsITimer);
|
|
timer.initWithCallback(function()
|
|
{
|
|
response.setStatusLine(null, 200, "OK");
|
|
response.setHeader("Content-Type", "text/plain", false);
|
|
response.write("hello");
|
|
response.finish();
|
|
}, 3000 /* milliseconds */, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
|
|
}
|