gecko-dev/dom/media/test/crashtests/1223670.html
Jesse Ruderman 8fceb4880e crashtest for bug 1223670 r=karlt
--HG--
extra : transplant_source : %B3%E7%87%DE%A5%E3%94%20%C9K%10%B9%CA%2B%00%A9%60%28.%CF
2015-12-04 12:42:20 +13:00

24 lines
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>