tenfourfox/layout/reftests/bugs/408656-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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>