tenfourfox/dom/media/test/crashtests/466945-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

26 lines
466 B
HTML

<html class="reftest-wait">
<head>
<script type="text/javascript">
var s;
function boom()
{
s = document.createElement("span");
s.innerHTML = "<video src='data:text/html,' autoplay='autoplay'><\/video>";
document.body.appendChild(document.createElement("iframe"));
setTimeout(boom2, 0);
}
function boom2()
{
s.innerHTML = "";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 0);"></body>
</html>