<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="../fast/js/resources/js-test-pre.js"></script> | |
<script src="resources/audio-testing.js"></script> | |
<script type="text/javascript" src="resources/javascriptaudionode-testing.js"></script> | |
</head> | |
<body> | |
<div id="description"></div> | |
<div id="console"></div> | |
<script> | |
description("Tests upmixing a 2-channel source connected to a JavaScriptAudioNode with 8-channel input."); | |
var sampleRate = 44100.0; | |
var sourceChannels = 2; | |
var inputChannels = 8; | |
var outputChannels = 6; | |
function runTest() { | |
if (window.testRunner) { | |
testRunner.dumpAsText(); | |
testRunner.waitUntilDone(); | |
} | |
window.jsTestIsAsync = true; | |
runJSNodeTest(); | |
} | |
runTest(); | |
</script> | |
<script src="../fast/js/resources/js-test-post.js"></script> | |
</body> | |
</html> |