line-height-applies-to-003

Line-height applied to elements with 'display' set to 'table-footer-group'

WeasyPrint

This browser

Assertion
The 'line-height' property applies to elements with 'display' set to 'table-footer-group'.

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 'table-footer-group'</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 'table-footer-group'.">
10         <style type="text/css">
11             #div1
12             {
13                 position: relative;
14             }
15             #div2
16             {
17                 background: orange;
18                 height: 2in;
19                 left: 1in;
20                 position: absolute;
21                 top: 0;
22                 width: 1in;
23             }
24             #test
25             {
26                 display: table-footer-group;
27                 line-height: 2in;
28             }
29             #table
30             {
31                 display: table;
32                 table-layout: fixed;
33             }
34             #row
35             {
36                 display: table-row;
37             }
38             #cell
39             {
40                 background: blue;
41                 display: table-cell;
42                 width: 1in;
43             }
44         </style>
45     </head>
46     <body>
47         <p>Test passes if the blue and orange boxes below are the same height.</p>
48         <div id="div1">
49             <div id="table">
50                 <div id="test">
51                     <div id="row">
52                         <div id="cell">&nbsp;</div>
53                     </div>
54                 </div>
55             </div>
56             <div id="div2"></div>
57         </div>
58     </body>
59 </html>