Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / subtree-table-cell-height.html
blobafe96c38dbfe0b4f5899dccb0ba743531d99aa03
1 <div style="display: table-cell; vertical-align: bottom; width: 100px; height: 100px; overflow: hidden; background-color: red;">
2 <div id="target" style="width: 100px; height: 50px; background-color: green;"></div>
3 </div>
4 <script>
5 if (window.testRunner)
6 testRunner.waitUntilDone();
8 setTimeout(function()
10 document.getElementById("target").style.height = "100px";
11 if (window.testRunner)
12 testRunner.notifyDone();
14 0);
15 </script>