tor-browser

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

copyToChannel-bufferOffset-1.html (248B)


      1 <html>
      2 <head>
      3  <title>Test large bufferOffset in copyToChannel()</title>
      4 </head>
      5 <script>
      6  const a = new AudioBuffer({length: 0x10, sampleRate: 44100});
      7  const b = new Float32Array(0x51986);
      8  a.copyToChannel(b, 0, 0x40004000)
      9 </script>
     10 </html>