Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / float-on-zero-height-line.html
blob71afab5268f59a31bd351873f9f2334a3f6e0b8f
1 <div>
2 <div style="display: inline-block; height: 0; width: 50px;">
3 <div style="width: 50px; height: 50px; background-color: green;"></div>
4 </div>
5 <div id="float" style="float: left; height: 50px; width: 50px; background-color: red;"></div>
6 </div>
7 <script>
8 document.body.offsetTop;
9 document.getElementById("float").style.display = "none";
10 </script>