blob: 9c0fe3b1ef406d690bb2919ef951fa848babf7ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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>
|