gecko-dev/dom/media/test/crashtests/1223670.html

24 строки
442 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var ac = new window.AudioContext("publicnotification");
setTimeout(function() {
document.documentElement.removeAttribute("class");
var htmlAudio = new Audio();
var stream = htmlAudio.mozCaptureStreamUntilEnded();
ac.createMediaStreamSource(stream);
}, 0);
}
</script>
</head>
<body onload="boom();">
</body>
</html>