Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1504-c523-font-style-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-style</title>
5   <style type="text/css">
6    p { color: navy; }
7    .one {font-style: italic;}
8    .two {font-style: oblique;}
9    .three, i {font-style: normal;}
10   </style>
11   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-styling" title="15.4 Font styling: the 'font-style' property">
12  </head>
13  <body>
14   <p class="one">
15    This sentence should be in italics.
16    <span class="three">This sentence should be normal.</span>
17   </p>
18   <p class="two"> This sentence should be oblique. </p>
19   <p> <i>This sentence should be normal.</i> </p>
20  </body>
21 </html>