summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/reftest/xml-trickle-4.sjs
blob: 0ac01d84da8e235c58763cde5e9fc5c604c8de3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 version='1.0'?><root>\u00D0\u00B6</root>\n");
    response.finish();
  }, 10, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
}