mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
355 B
HTML
23 lines
355 B
HTML
<html>
|
|
<head><style>
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
span.a {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
overflow: hidden;
|
|
}
|
|
</style></head>
|
|
<body>
|
|
<script>document.body.offsetHeight;</script>
|
|
<div style="padding: 100px;">
|
|
<span style="position: relative;">
|
|
<span class="a"></span>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|