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