blob: 48bd1b9c055704d8b1b63d82a44c9dc2bbc9c644 [file] [log] [blame]
<div style="display: table-cell; vertical-align: bottom; width: 100px; height: 100px; overflow: hidden; background-color: red;">
<div id="target" style="width: 100px; height: 50px; background-color: green;"></div>
</div>
<script>
if (window.layoutTestController)
layoutTestController.waitUntilDone();
setTimeout(function()
{
document.getElementById("target").style.height = "100px";
if (window.layoutTestController)
layoutTestController.notifyDone();
},
0);
</script>