summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_streams_gc.html
blob: d2ba23042b954d8b6fffc4e48212f0bf4f047b78 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test garbage collection of captured stream (bug 806754)</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script type="text/javascript" src="manifest.js"></script>
</head>
<body onload="doTest()">
<audio id="a" preload="metadata"></audio>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

var a = document.getElementById('a');
a.src = getPlayableAudio(gSmallTests).name;

function forceGC() {
  SpecialPowers.gc();
  SpecialPowers.forceGC();
  SpecialPowers.forceCC();
}

function doTest() {
  a.mozCaptureStreamUntilEnded();

  a.addEventListener("seeked", function() {
    a.play();

    a.addEventListener("play", function() {
      a.addEventListener("ended", function() {
        ok(true, "GC completed OK");
        SimpleTest.finish();
      });
    });
  });

  a.currentTime = a.duration;
  setTimeout(forceGC, 0);
}
</script>
</pre>
</body>
</html>