summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/reftest/xml-trickle-6.sjs
blob: 9e96687d19cb49f7c0c9ce30400749be72c3af74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var timer; // Place timer in global scope to avoid it getting GC'ed prematurely

function handleRequest(request, response)
{
  response.setHeader("Cache-Control", "no-cache", false);
  response.setHeader("Content-Type", "application/xml", false);
  response.write("<?");
  response.bodyOutputStream.flush();
  response.processAsync();
  timer = Components.classes["@mozilla.org/timer;1"]
    .createInstance(Components.interfaces.nsITimer);
  timer.initWithCallback(function() {
    response.write("xml");
    response.bodyOutputStream.flush();
    timer.initWithCallback(function() {
      response.write(" version='1.0'?><root>\u00D0\u00B6</root>\n");
      response.finish();
    }, 10, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
  }, 10, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
}