summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht
blob: 5f7a4ddecb900cc171ba3003b8ffff133f5468f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Test: list-style-type</title>
  <link rel="help" href="http://www.w3.org/TR/REC-CSS1#list-style-type"/>
  <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <style type="text/css"><![CDATA[
   body { color: navy; }
   .four {list-style-type: lower-roman;}
   .five {list-style-type: upper-roman;}
   .six {list-style-type: lower-alpha;}
   .seven {list-style-type: upper-alpha;}
   .eight {list-style-type: decimal;}
  ]]></style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#lists" title="12.5 Lists"/>
 </head>
 <body>
  <p>The two columns should look the same, except for alignment.</p>
  <ol class="four">
   <li>i.</li>
   <li>ii.</li>
   <li>iii.</li>
  </ol>
  <ol class="five">
   <li>I.</li>
   <li>II.</li>
   <li>III.</li>
  </ol>
  <ol class="six">
   <li>a.</li>
   <li>b.</li>
   <li>c.</li>
  </ol>
  <ol class="seven">
   <li>A.</li>
   <li>B.</li>
   <li>C.</li>
  </ol>
  <ol class="seven">
   <li>A.</li>
   <li>B.</li>
   <li class="eight">3.</li>
  </ol>
 </body>
</html>