tor-browser

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

c5517-ibrdr-s-000.xht (1096B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: border-style</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-style"/>
      6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
      7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      8   <style type="text/css"><![CDATA[
      9    .one {border-style: dashed; border-color: black; border-width: thick;}
     10    .two {border-style: groove; border-color: orange; border-width: thick;}
     11    .three {border-style: none; border-color: red; border-width: thick;}
     12   ]]></style>
     13   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties"/>
     14  </head>
     15  <body>
     16   <p>The borders below should be as described:</p>
     17   <p>
     18    <span class="one">Black and dashed.</span>
     19   </p>
     20   <p>
     21    <span class="two">Orange and grooved.</span>
     22   </p>
     23   <p>
     24    <span class="three">No border.</span>
     25   </p>
     26  </body>
     27 </html>