Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t0805-c5511-brdr-tw-00-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: border-top-width</title>
5   <style type="text/css">
6    td { vertical-align: bottom;}
7    table { color: navy; }
8    .two {border-top-width: thick; border-style: solid;}
9    .three {border-top-width: medium; border-style: solid;}
10    .four {border-top-width: thin; border-style: solid;}
11   </style>
12   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
13  </head>
14  <body>
15   <p>The three boxes below should have progressively thinner top borders.</p>
16   <table>
17    <tr>
18     <td>
19      <p class="two">
20       A
21      </p>
22     </td>
23     <td>
24      <p class="three">
25       B
26      </p>
27     </td>
28     <td>
29      <p class="four">
30       C
31      </p>
32     </td>
33    </tr>
34   </table>
35  </body>
36 </html>