Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webaudio / scriptprocessornode-upmix2-8channel-input.html
blobab0bc0c31e97ff7cb205bb45978cc0842929fa89
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <script src="../resources/js-test.js"></script>
6 <script src="resources/compatibility.js"></script>
7 <script src="resources/audio-testing.js"></script>
8 <script type="text/javascript" src="resources/scriptprocessornode-testing.js"></script>
9 </head>
11 <body>
13 <div id="description"></div>
14 <div id="console"></div>
16 <script>
17 description("Tests upmixing a 2-channel source connected to a JavaScriptAudioNode with 8-channel input.");
19 var sampleRate = 44100.0;
20 var sourceChannels = 2;
21 var inputChannels = 8;
22 var outputChannels = 6;
24 window.jsTestIsAsync = true;
26 function runTest() {
27 if (window.testRunner)
28 testRunner.dumpAsText();
29 runJSNodeTest();
32 runTest();
34 </script>
36 </body>
37 </html>