blob: 6f7378af2491a96d47df4f9523e72ac5a5f58c7d [file] [log] [blame]
<html>
<body onload="runTest()">
<div style="width: 15px;">
<script>
function runTest()
{
document.body.offsetTop;
var container = document.getElementById('panel');
container.style.position = 'relative';
document.getElementById('test1').style.overflow = 'hidden';
document.getElementById('test2').style.position = 'absolute';
}
</script>
<div id="panel">
<div id="test1">
<img style="float: left; width: 15px; height: 200px; background-color: silver;">
</div>
<div id="test2" style="font-family: Ahem;">
<a><p>A B C D</p>
</div>
</div>
</div>
</body>
</html>