Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / noninlinebadness.html
blob7c51c5e1775dcef8390f9ff8827e57a9d56a2ac2
1 <html>
2 <body><div><div style="float:left; width:200px;height:200px;"></div>
3 This text should be underneath a 200x200 lime float. We are making sure that the code that wraps
4 inline children in anonymous blocks does the right thing when blocks are inserted in between a float
5 and an inline.
6 </div>
7 <script>
8 var floatDiv = document.createElement("div");
9 floatDiv.setAttribute("style", "width:200px; height:200px; background-color:lime");
10 document.body.firstChild.insertBefore(floatDiv, document.body.firstChild.childNodes[1]);
11 </script>
12 </body>