Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / bug369123.html
blob644d123ce5d5ebb13ab8731badc301ceb52f20f6
1 <!DOCTYPE html>
2 <p>The blue block should be on the right of the green block, not below it.</p>
3 <div>
4 <div style='display: inline-block; width: 50px; height: 50px; background: green;'></div>
5 <div id=blue style='position: fixed; width: 50px; height: 50px; background: blue;'></div>
6 </div>
7 <script>
8 document.body.offsetTop;
9 blue.style.display = 'inline-block';
10 </script>