chromium/third_party/blink/web_tests/webaudio/ScriptProcessor/scriptprocessornode-downmix8-2channel-input.html

<!DOCTYPE html>
<html>
  <head>
    <title>
      scriptprocessornode-downmix8-2channel-input.html
    </title>
    <script src="../../resources/testharness.js"></script>
    <script src="../../resources/testharnessreport.js"></script>
    <script src="../resources/audit-util.js"></script>
    <script src="../resources/audit.js"></script>
    <script src="../resources/scriptprocessornode-testing-audit.js"></script>
  </head>
  <body>
    <script id="layout-test-code">
      let audit = Audit.createTaskRunner();

      let sampleRate = 44100.0;
      let sourceChannels = 8;
      let inputChannels = 2;
      let outputChannels = 6;

      audit.define(
          {
            label: 'test',
            description:
                'downmix 8-channel source to ScriprProcessNode with 2-channel input'
          },
          (task, should) => {
            runJSNodeTest(should).then(() => task.done());
          });

      audit.run();
    </script>
  </body>
</html>