Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / add-inline-before-float-in-block-children-block.html
blob2210337f8511ec24114f207ab8647c38b621aeba
1 <!DOCTYPE html>
2 <script>
3 window.onload = function() {
4 document.body.offsetTop;
5 document.getElementById('a').style.display = 'inline-block';
7 </script>
9 <p>There should be a blue <em>square</em> below.</p>
10 <div>
11 <div id="a" style="display:none; width:20px; height:40px; background:blue;"></div>
12 <div style="float:left; width:20px; height:40px; background:blue;"></div>
13 <div></div>
14 </div>