Mypal/layout/base/crashtests/406675-1.html

18 lines
290 B
HTML
Raw Permalink Normal View History

2019-03-11 10:26:37 +00:00
<html>
<head>
<script type="text/javascript">
function boom()
{
var textNode = document.createTextNode("\u202B" + "A B");
document.body.appendChild(textNode);
document.body.offsetHeight;
textNode.data = "\u202B" + " C";
}
</script>
</head>
<body onload="boom();"></body>
</html>