Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / 031.html
blob0d3105005352ddec12b208be510f9abf230bd50a
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html>
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
7 <link rel="stylesheet" type="text/css" href="style.css" />
8 <title>Killer</title>
10 <style>
12 p { clear: left; margin: 0; padding: 1em; }
14 ul { margin: 0;
15 padding: 0;
16 border: 2px solid blue;
17 clear:left;
18 float:left;
21 li {
22 display: block;
23 float: left;
24 padding: 0px;
25 margin: 0px;
28 span {
29 width: 91px;
30 display: block;
31 background-color:#eeeeee;
34 </style>
36 </head>
38 <body>
39 <p> "ONE" and "TWO" below should be on the same line.</p>
41 <ul><li><span>ONE</a></li><li><span class="last">TWO</a></li><div></div></ul>
43 <p> "ONE" and "TWO" below should be on different lines.</p>
45 <ul><li><span>ONE</a></li><li style="clear:left"><span class="last">TWO</a></li><div></div></ul>
47 <p> "ONE" and "TWO" below should be on the same line.</p>
49 <ul><li><span>ONE</a></li><li><span class="last">TWO</a></li></ul>
51 <p> "ONE" and "TWO" below should be on different lines.</p>
53 <ul><li><span>ONE</a></li><li style="clear:left"><span class="last">TWO</a></li></ul>