summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht46
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht b/testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht
new file mode 100644
index 0000000000..5f7a4ddecb
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/css1/c563-list-type-001.xht
@@ -0,0 +1,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>