blob: a2ec297b5c57f5fd2ba75ce8969356d7adbb0870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html style="position: relative; column-count: 3;" class="reftest-wait">
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.body.style.position = "";
document.documentElement.offsetHeight;
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();" style="position: absolute;">A<span><div></div>B</span></body>
</html>
|