2013-01-14 15:22:00 -08:00
|
|
|
<!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;
|
2013-01-22 17:12:21 -08:00
|
|
|
frameWin.AudioContext();
|
2013-01-14 15:22:00 -08:00
|
|
|
document.body.removeChild(iframe);
|
2013-01-22 17:12:21 -08:00
|
|
|
frameWin.AudioContext();
|
2013-01-14 15:22:00 -08:00
|
|
|
|
|
|
|
ok(true, "This test should not leak");
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|