gecko-dev/dom/html/crashtests/495546-1.html
Ryan VanderMeulen 6fc25d5d88 Bug 495546 - Add crashtest.
--HG--
extra : rebase_source : 3911a4b705d660722713b7a7d94505566c732d84
2015-10-24 15:03:19 -04:00

20 lines
451 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
var video = document.createElement("video");
var source = document.createElement("source");
source.setAttributeNS(null, "src", "http://127.0.0.1/");
video.appendChild(source);
document.body.appendChild(video);
setTimeout(function() { document.body.removeChild(video); }, 20);
}
</script>
</head>
<body onload="boom();"></body>
</html>