summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/933151.html
blob: 3d45f7af3827c5675987c18bcd196785e25aaf7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var ac = new window.AudioContext();
  var buffer = ac.createBuffer(1, 24313, 47250);
  buffer.copyFromChannel(buffer.getChannelData(0), '');
}

</script>
</head>
<body onload="boom();"></body>
</html>