summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_XHR_timeout.sjs
blob: 5eb14e96bcf8e2ae35ab3ac0aa60efca64251993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var timer = null;

function handleRequest(request, response) {
  response.processAsync();
  timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
  timer.initWithCallback(
    function () {
      response.setStatusLine(null, 200, "OK");
      response.setHeader("Content-Type", "text/plain", false);
      response.write("hello");
      response.finish();
    },
    2500 /* milliseconds */,
    Ci.nsITimer.TYPE_ONE_SHOT
  );
}