summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/lists/list-style-type-009.xht
blob: 2016efabfff150f7cba34812b16daf04641240d5 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>CSS Test: List-style-type set to 'lower-latin'</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style" />
        <meta name="assert" content="The 'list-style-type' property set to 'lower-latin' renders the correct list item marker." />
        <style type="text/css">
            body
            {
                margin-left: 50px;
            }
            div
            {
                display: list-item;
                list-style-type: lower-latin;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is a lowercase letter 'a.' below.</p>
        <div>&nbsp;</div>
    </body>
</html>