line-height-applies-to-010

Line-height applied to elements with 'display' set to 'list-item'

WeasyPrint

This browser

Assertion
The 'line-height' property applies to elements with 'display' set to 'list-item'.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3     <head>
 4         <title>CSS Test: Line-height applied to elements with 'display' set to 'list-item'</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'list-item'.">
10         <style type="text/css">
11             #div1
12             {
13                 margin-left: 1em;
14                 position: relative;
15             }
16             div div
17             {
18                 background: orange;
19                 height: 2in;
20                 left: 1in;
21                 position: absolute;
22                 top: 0;
23                 width: 1in;
24             }
25             span
26             {
27                 background: blue;
28                 display: list-item;
29                 line-height: 2in;
30                 width: 1in;
31             }
32         </style>
33     </head>
34     <body>
35         <p>Test passes if the blue and orange boxes below are the same height and there is a marker bullet on the left-hand side of the blue box.</p>
36         <div id="div1">
37             <span>&nbsp;</span>
38             <div></div>
39         </div>
40     </body>
41 </html>