text-transform-applies-to-014

Text-transform application to 'display: table-cell' element

WeasyPrint

This browser

Assertion
The 'text-transform' property is applied to 'display: table-cell' 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: Text-transform application to 'display: table-cell' element</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-text-transform">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#caps-prop">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'text-transform' property is applied to 'display: table-cell' elements.">
10         <style type="text/css">
11             #table
12             {
13                 display: table;
14             }
15             #row
16             {
17                 display: table-row;
18             }
19             #cell
20             {
21                 display: table-cell;
22                 text-transform: capitalize;
23             }
24         </style>
25     </head>
26     <body>
27         <p>Test passes if the letter "F" in the words "Filler Text" below is in upper-case.</p>
28         <div id="table">
29             <div id="row">
30                 <div id="cell">filler text</div>
31             </div>
32         </div>
33     </body>
34 </html>