blob: 8a4916e5a44cc7a76cbb8cdc2dc6d038df3940c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html style="margin:2em;color:red">
<head>
<meta charset="UTF-8">
<script>
function boom()
{
document.documentElement.offsetHeight;
document.body.style.position = "fixed";
document.documentElement.offsetHeight;
document.documentElement.style.MozBoxSizing = "border-box";
document.documentElement.offsetHeight;
}
</script>
</head>
<body style="display: contents;" onload="boom();"><li style="color:lime">LI</body></html>
|