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

25 lines
484 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
var x = document.getElementById('x');
x.removeChild(x.childNodes[1]);
document.documentElement.offsetHeight;
}
</script>
</head>
<body onload="boom();">
<div style="-moz-column-count: 2;"><span style="unicode-bidi: -moz-isolate;" id="x"><span style="direction: rtl;"></span> <span style="unicode-bidi: -moz-isolate; white-space: pre;">
x</span></span></div>
</body>
</html>