Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / overhanging-floats-removed.html
blob0ce7f9dc67534d42a387ccf470b0dd0e74c1cdbe
1 <script src="../../resources/ahem.js"></script>
2 <div style="display: -webkit-box; -webkit-box-orient: vertical;">
3 <div style="width: 80px; height: 80px; background-color: blue;">
4 <div id="float" style="float: left; width: 20px; height: 110px; background-color: silver;"></div>
5 </div>
6 <div style="font-family: Ahem; width: 80px; height: 80px; background-color: yellow;">Test overhanging floats</div>
7 </div>
8 <script>
9 document.body.offsetTop;
10 document.getElementById("float").style.display = "none";
11 </script>