summaryrefslogtreecommitdiffstats
path: root/dom/media/webcodecs/crashtests/1864475.html
blob: d7164b28547628bd92667f5f4f19c16193fcc0db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<script>
  document.addEventListener('DOMContentLoaded', async () => {
    const buffer = new ArrayBuffer(26838)
    const array = new Uint8ClampedArray(buffer)
    const frame = new VideoFrame(array, {
      'format': 'I420A',
      'codedWidth': 192,
      'codedHeight': 2,
      'timestamp': 14.19024535832334,
    })
    await frame.copyTo(buffer, {})
  })
</script>