Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1507-c526-font-sz-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-size</title>
5   <style type="text/css">
6    p { color: navy; margin: 10px; }
7    .one {font-size: medium;}
8    .two {font-size: larger;}
9    .three {font-size: smaller;}
10    .four {font-size: xx-small;}
11    .five {font-size: x-small;}
12    .six {font-size: small;}
13    .seven {font-size: large;}
14    .eight {font-size: x-large;}
15    .nine {font-size: xx-large;}
16   </style>
17   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props" title="15.7 Font size: the 'font-size' property">
18  </head>
19  <body>
20   <p> This sentence should be normal. </p>
21   <p class="one"> This sentence should be the same. </p>
22   <p class="two"> This sentence should be larger than normal. </p>
23   <p class="three"> This sentence should be smaller than normal. </p>
24   <p class="four">
25    This sentence should be very small.
26    <span class="one">This sentence should be back to normal.</span>
27   </p>
28   <p class="five">
29    This sentence should be rather small.
30    <span class="one">This sentence should be back to normal.</span>
31   </p>
32   <p class="six">
33    This sentence should be small.
34    <span class="one">This sentence should be back to normal.</span>
35   </p>
36   <p class="seven">
37    This sentence should be large.
38    <span class="one">This sentence should be back to normal.</span>
39   </p>
40   <p class="eight">
41    This sentence should be rather large.
42    <span class="one">This sentence should be back to normal.</span>
43   </p>
44   <p class="nine">
45    This sentence should be very large.
46    <span class="one">This sentence should be back to normal.</span>
47   </p>
48  </body>
49 </html>