mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
23 lines
396 B
HTML
23 lines
396 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
|
|
document.documentElement.style.direction = "rtl";
|
|
|
|
document.documentElement.offsetHeight;
|
|
var s = document.getElementById("s");
|
|
|
|
s.removeChild(s.firstChild);
|
|
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();" style="width: 1px;"><span id="s"> x y</span></body>
|
|
</html>
|