chromium/third_party/blink/web_tests/css2.1/t0805-c5511-brdr-tw-00-b.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: border-top-width</title>
  <style type="text/css">
   td { vertical-align: bottom;}
   table { color: navy; }
   .two {border-top-width: thick; border-style: solid;}
   .three {border-top-width: medium; border-style: solid;}
   .four {border-top-width: thin; border-style: solid;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
 </head>
 <body>
  <p>The three boxes below should have progressively thinner top borders.</p>
  <table>
   <tr>
    <td>
     <p class="two">
      A
     </p>
    </td>
    <td>
     <p class="three">
      B
     </p>
    </td>
    <td>
     <p class="four">
      C
     </p>
    </td>
   </tr>
  </table>
 </body>
</html>