summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_bug1027864.html
blob: 847485ff8836253c32990e8b9ae395124ba452d7 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE HTML>
<html>
<head>
  <title>Test bug 1027864</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

function observer(subject, topic, data) {
  var id = parseInt(data);
  var index = ids.indexOf(id);
  if (index != -1) {
    ok(true, "Dropping id " + id + " at index " + index);
    ids.splice(index, 1);
    if (!ids.length) {
      SimpleTest.executeSoon(function() {
        SimpleTest.finish();
      });
    }
  }
}

function id(node) {
  return SpecialPowers.getPrivilegedProps(node, "id");
}

SpecialPowers.addAsyncObserver(observer, "webaudio-node-demise", false);

SimpleTest.registerCleanupFunction(function() {
  SpecialPowers.removeAsyncObserver(observer, "webaudio-node-demise");
});

var ac = new AudioContext();
var ids;

(function() {
  var delay = ac.createDelay();
  delay.delayTime.value = 0.03;

  var gain = ac.createGain();
  gain.gain.value = 0.6;

  delay.connect(gain);
  gain.connect(delay);

  gain.connect(ac.destination);

  var source = ac.createOscillator();

  source.connect(gain);
  source.start(ac.currentTime);
  source.stop(ac.currentTime + 0.1);

  ids = [ id(delay), id(gain), id(source) ];
})();

setInterval(function() {
  forceCC();
}, 200);

function forceCC() {
  SpecialPowers.DOMWindowUtils.cycleCollect();
  SpecialPowers.DOMWindowUtils.garbageCollect();
}

</script>
</pre>
</body>
</html>