Bug 867089 - Test for invalid playbackRate values on an AudioBufferSourceNode. r=ehsan

This commit is contained in:
Paul Adenot 2013-04-30 16:04:44 +02:00
parent 3d22663645
commit 8c8d0b4eb8
2 changed files with 46 additions and 0 deletions

View File

@ -19,6 +19,7 @@ MOCHITEST_FILES := \
test_bug856771.html \
test_bug866570.html \
test_bug866737.html \
test_bug867089.html \
test_analyserNode.html \
test_AudioBuffer.html \
test_AudioContext.html \

View File

@ -0,0 +1,45 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Crashtest for bug 867089</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">
SpecialPowers.setBoolPref("media.webaudio.enabled", true);
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var ctx = new AudioContext();
// Test invalid playbackRate values for AudioBufferSourceNode.
var source = ctx.createBufferSource();
var buffer = ctx.createBuffer(2, 2048, 8000);
source.buffer = buffer;
source.playbackRate.value = 0.0;
source.connect(ctx.destination);
source.start(0);
var source2 = ctx.createBufferSource();
source2.buffer = buffer;
source2.playbackRate.value = -1.0;
source2.connect(ctx.destination);
source2.start(0);
var source2 = ctx.createBufferSource();
source3.buffer = buffer;
source3.playbackRate.value = 3000000.0;
source3.connect(ctx.destination);
source3.start(0);
ok(true, "We did not crash.");
SpecialPowers.clearUserPref("media.webaudio.enabled");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>