blob: 9ce0aa9a6277f1a8ffd95f34c3ce0a8bf40a279d (
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="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>
|