summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webaudio/the-audio-api/the-audiobuffer-interface/crashtests/copyToChannel-bufferOffset-1.html
blob: 999925a9835e0abce5bc86d4cafe817634085096 (plain)
1
2
3
4
5
6
7
8
9
10
<html>
<head>
  <title>Test large bufferOffset in copyToChannel()</title>
</head>
<script>
  const a = new AudioBuffer({length: 0x10, sampleRate: 44100});
  const b = new Float32Array(0x51986);
  a.copyToChannel(b, 0, 0x40004000)
</script>
</html>