Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / floats-offset-image-quirk-line-height-expected.html
blob646afe4a9264b703b923ae607dfa36e3b4fce52c
1 <html>
2 <head>
3 <style>
4 body { width: 400px;}
5 .container { width: 100px; height: 150px; position: relative;}
6 div { background: white; }
7 .reference { position: absolute; width: 20px; height: 20px; background: black; }
8 .first { left: 10px; }
9 .second { left: 40px; top: 20px; }
10 </style>
11 </head>
12 <body>
13 <!-- In quirks mode, images have their descent remove so that they squeeze together across line breaks.
14 Ensure the images find the correct offset for their line when avoiding floats. -->
15 There should be no red visible below.
16 <div class="container">
17 <!-- This should cover the first image. -->
18 <div class="reference first"></div>
19 <!-- This should cover the second image. -->
20 <div class="reference second"></div>
21 </div>
22 </body></html>