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
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]);