haikuwebkit/LayoutTests/fast/repaint/float-in-new-block-with-lay...

17 lines
526 B
HTML

<script>
if (window.testRunner)
testRunner.waitUntilDone();
function runTest()
{
document.getElementById("target").style.removeProperty("display");
if (window.testRunner)
testRunner.notifyDone();
}
</script>
<body onload="setTimeout(runTest, 0);">
<div style="height: 100px;"></div>
<div id="target" style="display: none">
<div style="float: left; width: 100px; height: 100px; background-color: green;"></div>
</div>
</body>