tor-browser

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

border-spacing-094.xht (1403B)


      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: Border-spacing: using two values, 5px 50px</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-border-spacing" />
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders" />
      8         <meta name="flags" content="ahem" />
      9         <meta name="assert" content="Verify that a table can have two values specified by its border-spacing property." />
     10         <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     11         <style type="text/css">
     12             table
     13             {
     14                 border-spacing: 5px 50px;
     15                 font: 20px/1 Ahem;
     16             }
     17             td
     18             {
     19                 padding: 0;
     20             }
     21         </style>
     22     </head>
     23     <body>
     24         <p>Test passes if four bars appear, and the vertical space between them is greater than the horizontal space between them.</p>
     25         <table>
     26             <tr>
     27                 <td>XXXXXX</td>
     28                 <td>XXXXXX</td>
     29             </tr>
     30             <tr>
     31                 <td>XXXXXX</td>
     32                 <td>XXXXXX</td>
     33             </tr>
     34         </table>
     35     </body>
     36 </html>