Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1205-c563-list-type-00-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: list-style-type</title>
5   <style type="text/css">
6    body { color: navy; }
7    .one {list-style-type: disc;}
8    .two {list-style-type: circle;}
9    .three {list-style-type: square;}
10    .nine {list-style-type: none; color: red;}
11   </style>
12   <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
13  </head>
14  <body>
15   <p>Each bullet should look as described, and there should be no red present.</p>
16   <ul class="one">
17    <li>disc</li>
18    <li>disc</li>
19    <li>disc</li>
20   </ul>
21   <ul class="two">
22    <li>circle</li>
23    <li>circle</li>
24    <li>circle</li>
25   </ul>
26   <ul class="three">
27    <li>square</li>
28    <li>square</li>
29    <li>square</li>
30   </ul>
31   <ul class="nine">
32    <li> </li>
33    <li> </li>
34    <li> </li>
35   </ul>
36  </body>
37 </html>