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