tenfourfox/layout/generic/crashtests/430991.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

25 lines
375 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var li = document.getElementById("li");
li.removeChild(li.lastChild);
}
</script>
</head>
<body onload="boom();">
<ul id="ul">
<li id="li" style="-moz-column-count: -1; white-space: pre-wrap;"><span>A</span><span>B</span><span style="float: right;"></span>
</li>
</ul>
</body>
</html>