summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_bug867203.html
blob: 0ca31263d36a2298391ca64860d79648ae775444 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Crashtest for bug 867203</title>
  <script type="text/javascript" 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();
addLoadEvent(function() {
  var ctx = new AudioContext();

  var panner1 = ctx.createPanner();
  panner1.setVelocity(1, 1, 1);
  ctx.listener.setVelocity(1, 1, 1);
  (function() {
    ctx.createBufferSource().connect(panner1);
  })();
  SpecialPowers.forceGC();
  SpecialPowers.forceCC();
  ctx.createPanner();

  ok(true, "We did not crash.");
  SimpleTest.finish();
});


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