tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

stereopannernode-panning.html (978B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>
      5      stereopannernode-panning.html
      6    </title>
      7    <script src="/resources/testharness.js"></script>
      8    <script src="/resources/testharnessreport.js"></script>
      9    <script src="../../resources/audit-util.js"></script>
     10    <script src="../../resources/audit.js"></script>
     11    <script src="../../resources/stereopanner-testing.js"></script>
     12  </head>
     13  <body>
     14    <script id="layout-test-code">
     15      let audit = Audit.createTaskRunner();
     16 
     17      audit.define('mono-test', (task, should) => {
     18        StereoPannerTest
     19            .create(should, {numberOfInputChannels: 1, prefix: 'Mono: '})
     20            .run()
     21            .then(() => task.done());
     22      });
     23 
     24      audit.define('stereo-test', (task, should) => {
     25        StereoPannerTest
     26            .create(should, {numberOfInputChannels: 2, prefix: 'Stereo: '})
     27            .run()
     28            .then(() => task.done());
     29      });
     30 
     31      audit.run();
     32    </script>
     33  </body>
     34 </html>