mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
21 lines
672 B
HTML
21 lines
672 B
HTML
<!DOCTYPE html>
|
|
<html style="-moz-column-width: 1px;">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
document.body.style.height = "8px";
|
|
document.documentElement.style.fontSize = "22050893469px";
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById("x").style.counterReset = "chicken";
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="-moz-column-width: 1px; -moz-column-fill: auto;" onload="boom();">
|
|
<hr size="100" color="blue"><div style="position: absolute;"></div><div id="x" style="height: 5px;"></div>
|
|
</body>
|
|
</html>
|
|
|