summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_bug867104.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/webaudio/test/test_bug867104.html')
-rw-r--r--dom/media/webaudio/test/test_bug867104.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/dom/media/webaudio/test/test_bug867104.html b/dom/media/webaudio/test/test_bug867104.html
new file mode 100644
index 000000000..82852ba51
--- /dev/null
+++ b/dom/media/webaudio/test/test_bug867104.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>Crashtest for bug 867104</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 source = ctx.createBufferSource();
+ var b0 = ctx.createBuffer(32,798,22050);
+ var b1 = ctx.createBuffer(32,28,22050);
+ var sp = ctx.createScriptProcessor(0, 2, 0);
+ source.buffer = b0;
+ source.connect(sp);
+ source.start(0);
+ source.buffer = b1;
+ sp.onaudioprocess = function() {
+ ok(true, "We did not crash.");
+ sp.onaudioprocess = null;
+ SimpleTest.finish();
+ };
+});
+
+
+</script>
+</pre>
+</body>
+</html>