mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test AudioBufferSourceNode</title>
|
|
<script type="text/javascript" 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">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addLoadEvent(function() {
|
|
var context = new AudioContext();
|
|
|
|
var sp = context.createScriptProcessor(2048, 0, 2);
|
|
sp.onaudioprocess = function(e) {
|
|
is(e.inputBuffer.numberOfChannels, 0, "Should have 0 input channels");
|
|
is(e.outputBuffer.numberOfChannels, 2, "Should have 2 output channels");
|
|
sp.onaudioprocess = null;
|
|
|
|
sp = context.createScriptProcessor(2048, 2, 0);
|
|
sp.onaudioprocess = function(e) {
|
|
is(e.inputBuffer.numberOfChannels, 2, "Should have 2 input channels");
|
|
is(e.outputBuffer.numberOfChannels, 0, "Should have 0 output channels");
|
|
sp.onaudioprocess = null;
|
|
|
|
SimpleTest.finish();
|
|
};
|
|
};
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|