Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1506-c525-font-wt-00-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: font-weight</title>
5   <style type="text/css">
6    p, h4 { color: navy; }
7    .one {font-weight: bold;}
8    .two {font-weight: bolder;}
9    .three {font-weight: lighter;}
10    .four {font-weight: 100;}
11    .five {font-weight: 300;}
12    .six {font-weight: 500;}
13    .seven {font-weight: 700;}
14    .eight {font-weight: 900;}
15    .nine {font-weight: normal;}
16    b {font-weight: lighter;}
17   </style>
18   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-boldness" title="15.6 Font boldness: the 'font-weight' property">
19  </head>
20  <body>
21   <p> This sentence should be normal. </p>
22   <p class="two"> This sentence should be bolder than normal. </p>
23   <p class="one"> This sentence should be bold. </p>
24   <h4> Whatever this line looks like... </h4>
25   <h4 class="two"> ...this line should look bolder (or the same).</h4>
26   <p> <b>This sentence should be normal.</b> </p>
27   <p class="four"> This sentence should be very light. </p>
28   <p class="five"> This sentence should be slightly bolder (or the same). </p>
29   <p class="six"> This sentence should be slightly bolder again (or the same). </p>
30   <p class="seven"> This sentence should be slightly bolder still (but not the same). </p>
31   <p class="eight"> This sentence should be the most bold (and maybe the same as the last one). </p>
32   <p class="one">
33    This sentence should be bold.
34    <span class="nine"> This sentence should be normal.</span>
35   </p>
36  </body>
37 </html>