font-variant-applies-to-010

Font-variant and 'display: table-footer-group' elements

WeasyPrint

This browser

Assertion
The 'font-variant' property applies to 'display: table-footer-group' elements.

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: Font-variant and 'display: table-footer-group' elements</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#small-caps">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'font-variant' property applies to 'display: table-footer-group' elements.">
10         <style type="text/css">
11             #reference, #test
12             {
13                 font-variant: small-caps;
14             }
15             #table
16             {
17                 display: table;
18             }
19             #test
20             {
21                 display: table-footer-group;
22             }
23             #row
24             {
25                 display: table-row;
26             }
27             #cell
28             {
29                 display: table-cell;
30             }
31         </style>
32     </head>
33     <body>
34         <p>Test passes if the lines of "Filler Text" below match.</p>
35         <div id="reference">Filler Text</div>
36         <div id="table">
37             <div id="test">
38                 <div id="row">
39                     <div id="cell">Filler Text</div>
40                 </div>
41             </div>
42         </div>
43     </body>
44 </html>