caption-side-initial-001

Initial value of 'caption-side'

WeasyPrint

This browser

Assertion
The initial value of 'caption-side' is 'top'.

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: Initial value of 'caption-side'</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#propdef-caption-side">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#caption-position">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The initial value of 'caption-side' is 'top'.">
10         <style type="text/css">
11             table
12             {
13                 background: blue;
14             }
15             td
16             {
17                 background: blue;
18                 height: 1in;
19                 width: 2in;
20             }
21         </style>
22     </head>
23     <body>
24         <p>Test passes if the word "ABOVE" is above the box.</p>
25         <table>
26             <caption>ABOVE</caption>
27             <tr>
28                 <td></td>
29             </tr>
30         </table>
31     </body>
32 </html>