summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_bug827541.html
blob: 9940c112e0e7da52d9774988a26b90dd84b7804e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
  <title>Tell the cycle collector about the audio contexts owned by nsGlobalWindow</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">
  var iframe = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
  document.body.appendChild(iframe);
  var frameWin = iframe.contentWindow;
  new frameWin.AudioContext();
  document.body.removeChild(iframe);
  new frameWin.AudioContext();

  ok(true, "This test should not leak");
</script>
</pre>
</body>
</html>