Git init
[framework/web/webkit-efl.git] / LayoutTests / fast / replaced / 003.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2 <html lang="en">
3  <head>
4   <title>Replaced inline elements wrapping around floats (pixel widths)</title>
5   <style type="text/css">
6    div { width: 600px; height: 200px; background: red; }
7    div p { height: 100px; background: green; }
8    img { vertical-align: bottom; }
9    img.float { float: left; }
10    img.flow { width: 600px; height: 100px; }
11   </style>
12  </head>
13  <body>
14   <p>There should be no red below.</p>
15   <div>
16    <p>
17     <img src="resources/sample.gif" alt="" class="float">
18     <img src="resources/sample.gif" alt="Image support required for this test" class="flow">
19    </p>
20   </div>
21  </body>
22 </html>