summaryrefslogtreecommitdiffstats
path: root/dom/media/webcodecs/crashtests/1881079.html
blob: 15fd26ff74ca1737f802609c3ed46e190a964010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<script>
document.addEventListener("DOMContentLoaded", async () => {
  const encoder = new VideoEncoder({
    'output': (e) => {},
    'error': (e) => {},
  })
  encoder.configure({
    'codec': '󠋚᩿',
    'width': 2147483648,
    'height': 60,
  })
  encoder.reset()
  encoder.configure({
    'codec': '󠋚᩿',
    'width': 4294967295,
    'height': 29,
  })
  const decoder = new VideoDecoder({
    'output': (e) => {},
    'error': (e) => {},
  })
  decoder.configure({
    'codec': '󠋚᩿',
    'width': 2147483648,
    'height': 60,
  })
  decoder.reset()
  decoder.configure({
    'codec': '󠋚᩿',
    'width': 4294967295,
    'height': 29,
  })
})
</script>