Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html lang="en-US">
4 <head>
5 <title>Test case for list items flowing around floats</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <meta http-equiv="Content-Style-Type" content="text/css">
8 <style type="text/css">
10 div { float: left; height: 3em; width: 100px; }
12 ul, ol, li { margin-top: 0; margin-bottom: 0; }
13 li { height: 2em; background: aqua; color: black; }
15 </style>
16 </head>
17 <body>
19 <div></div>
21 <ol>
22 <li>one</li>
23 <li>two</li>
24 <li>three</li>
25 <li>four</li>
26 </ol>
28 <div></div>
30 <ul>
31 <li>one</li>
32 <li>two</li>
33 <li>three</li>
34 <li>four</li>
35 </ul>
37 </body>
38 </html>