blob: 19fd6d4daee3b3aafa99cb4e6d6bdaf3928da9d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<meta charset="UTF-8">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
function boom()
{
(new AudioContext()).createScriptProcessor().hamster = {};
SpecialPowers.forceCC();
SpecialPowers.forceGC();
ok(true, "test finished");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="boom();"></body>
</html>
|