tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

caption-side-initial-001.xht (1085B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      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="assert" content="The initial value of 'caption-side' is 'top'." />
      9         <style type="text/css">
     10             table
     11             {
     12                 background: blue;
     13             }
     14             td
     15             {
     16                 background: blue;
     17                 height: 1in;
     18                 width: 2in;
     19             }
     20         </style>
     21     </head>
     22     <body>
     23         <p>Test passes if the word "ABOVE" is above the box.</p>
     24         <table>
     25             <caption>ABOVE</caption>
     26             <tr>
     27                 <td></td>
     28             </tr>
     29         </table>
     30     </body>
     31 </html>