tor-browser

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

bordercolor-3-ref.html (1922B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
      2 <html >
      3 <head>
      4  <title>CSS Test: HTML bordercolor Attribute</title>
      5  <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
      6  <link rel="help" href="RELEVANT_SPEC_SECTION"/>
      7  <meta name="assert" content="Figure out which rules are ignored and how."/>
      8  <style type="text/css">
      9    html { color: blue; }
     10    table { margin: 0.5em; }
     11    .thin, .elemthin { border-width: thin; border-style: outset; }
     12    .thin * { border-width: thin; border-style: inset; }
     13    .orange, .orange *, .elemorange { border-color: orange; }
     14  </style>
     15 </head>
     16 <body>
     17  <table class="orange thin">
     18    <tr><td>A<td>A
     19  </table>
     20 
     21  <table class="elemorange elemthin">
     22    <tr><td>B<td>B
     23  </table>
     24 
     25  <table class=orange style="border-collapse: collapse;">
     26    <tr><td style="border-right-width: thin; border-right-style: solid;
     27        border-bottom-width: thin; border-bottom-style: solid;">C
     28        <td style="border-bottom-width: thin; border-bottom-style: solid;">C
     29    <tr><td style="border-right-width: thin; border-right-style: solid;">C<td>C
     30  </table>
     31 
     32  <table class=orange style="border-collapse: collapse;">
     33    <tr><td style="border-right-width: thin; border-right-style: solid;">D<td>D
     34    <tr><td style="border-right-width: thin; border-right-style: solid;">D<td>D
     35  </table>
     36 
     37  <table>
     38    <tr><td>E<td>E
     39    <tr><td>E<td>E
     40  </table>
     41 
     42  <table>
     43    <tr><td>F<td>F
     44  </table>
     45 
     46  <table style="border-collapse: collapse;">
     47    <tr class=orange><td style="border-right-width: thin; border-right-style: solid;
     48        border-bottom-width: thin; border-bottom-style: solid;">G
     49        <td style="border-bottom-width: thin; border-bottom-style: solid;">G
     50    <tr class=orange><td style="border-right-width: thin; border-right-style: solid;">G<td>G
     51  </table>
     52 
     53  <table class="elemorange thin">
     54    <tr><td>H<td>H
     55  </table>
     56 </body>
     57 </html>