зеркало из https://github.com/mozilla/gecko-dev.git
Bug 656881 - Make timer in file_bug534293-slow.sjs not suspectible to early GC. r=jwalden.
This commit is contained in:
Родитель
f1dc6cff4a
Коммит
f3370e1221
|
@ -1,10 +1,12 @@
|
|||
var timer;
|
||||
|
||||
function handleRequest(request, response)
|
||||
{
|
||||
response.setHeader("Cache-Control", "no-cache", false);
|
||||
response.setHeader("Content-Type", "text/javascript", false);
|
||||
response.write("ok(true, 'Slow script ran.');");
|
||||
response.processAsync();
|
||||
var timer = Components.classes["@mozilla.org/timer;1"]
|
||||
timer = Components.classes["@mozilla.org/timer;1"]
|
||||
.createInstance(Components.interfaces.nsITimer);
|
||||
timer.initWithCallback(function() {
|
||||
response.finish();
|
||||
|
|
Загрузка…
Ссылка в новой задаче