tor-browser

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

border-conflict-resolution-006.xht (1238B)


      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: Cell borders are set by the table</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#border-conflict-resolution" />
      7         <meta name="assert" content="Borders on every edge (top, right, bottom, left) of a cell can be set by the table's border properties, which can vary in width, style and color." />
      8         <style type="text/css">
      9             table
     10             {
     11                 border-bottom: 8px dashed orange;
     12                 border-left: 16px double purple;
     13                 border-right: 12px dotted yellow;
     14                 border-top: 4px solid blue;
     15             }
     16             td
     17             {
     18                 width: 6em;
     19                 height: 6em;
     20             }
     21         </style>
     22     </head>
     23     <body>
     24         <p>Test passes if there is an outline of a box with each edge looking different from the other edges.</p>
     25         <table>
     26             <tr>
     27                <td></td>
     28             </tr>
     29         </table>
     30     </body>
     31 </html>