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

19 lines
272 B
HTML

<html>
<head>
<script type="text/javascript">
function boom()
{
s = document.createElement("span");
a = document.createElement("audio");
a['src'] = "javascript:4";
a['loopend'] = 3;
s.appendChild(a);
}
</script>
</head>
<body onload="boom();"></body>
</html>