gecko/content/media/test/crashtests/876024-2.html
Ehsan Akhgari cbebfc17c9 Bug 886165 - Hide the alternate names in the spec behind prefs which are turned off by default; r=roc
This patch uses one pref per interface, to allow us finer grain control over
which ones we might need to turn on in the future.
2013-06-23 19:22:10 -04:00

18 lines
300 B
HTML

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