blob: 5e944d5d041673cd4672bec4895d288823147ae3 [file] [log] [blame]
<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>