font-variant-applies-to-015

Font-variant and 'display: table-caption' elements

WeasyPrint

This browser

Assertion
The 'font-variant' property applies to 'display: table-caption' 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-caption' 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-caption' elements.">
10         <style type="text/css">
11             #reference, #caption
12             {
13                 font-variant: small-caps;
14             }
15             #table
16             {
17                 display: table;
18                 width: 100%;
19             }
20             #caption
21             {
22                 display: table-caption;
23             }
24             #row
25             {
26                 display: table-row;
27             }
28             #cell
29             {
30                 display: table-cell;
31             }
32         </style>
33     </head>
34     <body>
35         <p>Test passes if the lines of "Filler Text" below match.</p>
36         <div id="reference">Filler Text</div>
37         <div id="table">
38             <div id="caption">Filler Text</div>
39             <div id="row">
40                 <div id="cell"></div>
41             </div>
42         </div>
43     </body>
44 </html>