1
0
Fork 0
firefox/layout/generic/crashtests/667025.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
390 B
HTML

<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.documentElement.style.direction = "rtl";
document.documentElement.offsetHeight;
var s = document.getElementById("s");
s.firstChild.remove();
document.documentElement.offsetHeight;
}
</script>
</head>
<body onload="boom();" style="width: 1px;"><span id="s"> x y</span></body>
</html>