tenfourfox/gfx/tests/crashtests/393749-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
304 B
HTML

<html>
<head>
<script>
function boom()
{
var het = document.createTextNode(String.fromCharCode(0x05D7)); // hebrew letter het
document.getElementById("s").appendChild(het);
}
</script>
</head>
<body onload="boom();" dir="rtl">
<div><span id="s">A</span><span>&nbsp;</span>B</div>
</body>
</html>