Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / float-no-longer-overhanging.html
blob0d8d4747330883caae7a237bc6b9b314de4173d4
1 <html>
2 <head>
3 </head>
4 <body>
5 <div id="target" style="height: 90px;">
6 <div style="height: 100px; width: 100px; background: red;">
7 <div style="float: left; height: 100px; width: 100px; background-color: green;"></div>
8 </div>
9 </div>
10 <script>
11 function test()
13 document.getElementById("target").style.height = "110px";
16 document.body.offsetTop;
17 test();
18 </script>
19 </body>
20 </html>