Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / br-with-clear-2.html
blobd0a04bef3e5556f088c938a880ccf3f48152b932
1 <html>
2 <head>
3 <style>
4 body { font-family: Ahem; font-size: 25px; color: green; }
5 div.float { float: left; height: 50px; width: 50px; background-color: lightyellow; color: red; }
6 div.margin { margin-top: 20px; }
7 </style>
8 </head>
9 <body style="height: 200%">
10 <div class="margin">
11 <div class="float">
12 &nbsp;&nbsp;A<br><br>B
13 </div>
14 </div>
15 <div>
16 X<br style="clear: both;">Y
17 </div>
18 <div style="clear: both; height: 50px;"></div>
19 <div class="margin">
20 <div class="float">
21 &nbsp;&nbsp;A<br><br>B
22 </div>
23 </div>
24 <div>
25 <span style="direction: rtl">X<br style="clear: both;">Y</span>
26 </div>
27 </body>