summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/file_bug568470-script.sjs
blob: f9150a09486cc0b10b9766dca97a17ce7a7578a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var timer = null; // Declare outside to prevent premature GC

function handleRequest(request, response)
{
  response.setHeader("Cache-Control", "no-cache", false);
  response.setHeader("Content-Type", "text/javascript", false);
  response.write("var i = 0;");
  response.bodyOutputStream.flush();
  response.processAsync();
  timer = Components.classes["@mozilla.org/timer;1"]
    .createInstance(Components.interfaces.nsITimer);
  timer.initWithCallback(function() {
      response.finish();
    }, 500, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
}