blob: 1a4e5c856ee57120c4865b547f9636cfc675709e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test the AudioContext.destination interface</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="webaudio.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">
// Work around bug 911777
SpecialPowers.forceGC();
SpecialPowers.forceCC();
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var ac = new AudioContext();
ok(ac.destination.maxChannelCount > 0, "We can query the maximum number of channels");
var oac = new OfflineAudioContext(2, 1024, 48000);
is(oac.destination.maxChannelCount, 2, "This OfflineAudioContext should have 2 max channels.");
oac = new OfflineAudioContext(6, 1024, 48000);
is(oac.destination.maxChannelCount, 6, "This OfflineAudioContext should have 6 max channels.");
expectException(function() {
oac.destination.channelCount = oac.destination.channelCount + 1;
}, DOMException.INDEX_SIZE_ERR);
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>
|