mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 867089 - Test for invalid playbackRate values on an AudioBufferSourceNode. r=ehsan
This commit is contained in:
parent
3d22663645
commit
8c8d0b4eb8
@ -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 \
|
||||
|
45
content/media/webaudio/test/test_bug867089.html
Normal file
45
content/media/webaudio/test/test_bug867089.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user