summaryrefslogtreecommitdiffstats
path: root/image/test/crashtests/delayedframe.sjs
blob: 0cd7ce97e9657c2bedadb244320a5c14b9f19c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
function getFileStream(filename)
{
  // Get the location of this sjs file, and then use that to figure out where
  // to find where our other files are.
  var self = Components.classes["@mozilla.org/file/local;1"]
                       .createInstance(Components.interfaces.nsIFile);
  self.initWithPath(getState("__LOCATION__"));
  var file = self.parent;
  file.append(filename);
  dump(file.path + "\n");

  var fileStream = Components.classes['@mozilla.org/network/file-input-stream;1']
                     .createInstance(Components.interfaces.nsIFileInputStream);
  fileStream.init(file, 1, 0, false);

  return fileStream;
}

var gTimer;

function handleRequest(request, response)
{
  response.processAsync();
  response.setStatusLine(request.httpVersion, 200, "OK");
  response.setHeader("Content-Type", "image/gif", false);

  var firststream = getFileStream("threeframes-start.gif");
  response.bodyOutputStream.writeFrom(firststream, firststream.available())
  firststream.close();

  gTimer = Components.classes["@mozilla.org/timer;1"].createInstance(Components.interfaces.nsITimer);
  gTimer.initWithCallback(function()
  {
    var secondstream = getFileStream("threeframes-end.gif");
    response.bodyOutputStream.writeFrom(secondstream, secondstream.available())
    secondstream.close();
    response.finish();

    // This time needs to be longer than the animation timer in
    // threeframes-start.gif. That's specified as 100ms; just use 5 seconds as
    // a reasonable upper bound. Since this is just a crashtest, timeouts
    // aren't a big deal.
  }, 5 * 1000 /* milliseconds */, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
}