blob: 4949a276daf9cf9e636b3d24a3a7bbdec56dc07a [file] [log] [blame]
<div style="position: relative;">
<div style="width: 100px; height: 100px; background-color: red;"></div>
<div style="visibility: hidden; position: absolute; top: 0;">
<div id="inner" style="width: 100px; height: 100px; background-color: green;"></div>
</div>
</div>
<script>
function test()
{
document.getElementById("inner").style.visibility = "visible";
}
if (window.layoutTestController) {
document.body.offsetTop;
layoutTestController.display();
test();
} else
setTimeout(test, 0);
</script>