gecko/dom/media/test/crashtests/876024-2.html

18 lines
304 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var bufferSource = new AudioContext().createScriptProcessor().context.createBufferSource();
bufferSource.start(0, 0, 0);
bufferSource.stop(562949953421313);
}
</script></head>
<body onload="boom();"></body>
</html>