diff options
Diffstat (limited to 'dom/media/webaudio/test/test_bug867203.html')
-rw-r--r-- | dom/media/webaudio/test/test_bug867203.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dom/media/webaudio/test/test_bug867203.html b/dom/media/webaudio/test/test_bug867203.html new file mode 100644 index 000000000..0ca31263d --- /dev/null +++ b/dom/media/webaudio/test/test_bug867203.html @@ -0,0 +1,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> |