mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
755 B
HTML
35 lines
755 B
HTML
|
<!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>
|