blob: 23174656fee4e6b05c2f263f670b848695cc2f0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.getElementById("x").style.counterIncrement = "a";
document.documentElement.offsetHeight;
}
</script>
<body onload="boom();" style="-moz-column-count: 3">
<div style="position: relative;">
<div style="position: absolute; height: 3pt;"></div>
<div style="position: absolute;" id="x"></div>
<div style="position: absolute; height: 8pt;"></div>
</div>
</body>
</html>
|