Mypal/layout/generic/crashtests/413085-1.html

24 lines
361 B
HTML
Raw Normal View History

2019-03-11 10:26:37 +00:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body:first-letter { float: right; }
</style>
<script type="text/javascript">
function boom()
{
document.body.removeChild(document.body.firstChild);
document.body.appendChild(document.createTextNode('x'));
}
</script>
</head>
<body onload="boom();">&#xFEB7;
</body>
</html>