summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/lists/lists-backgrounds-001.xht
blob: 6ee7bb88720eae94e5426d095b5edf0b13adab27 (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
<!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 with background applied</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#lists" />
        <meta name="assert" content="Background properties only apply to the principal box and not the marker box when the marker is set to outside." />
        <style type="text/css">
            #div1
            {
                background: orange;
                margin-left: 50px;
                padding-left: 30px;
            }
            div div
            {
                display: list-item;
                list-style-type: disc;
                background: blue;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the text has a blue background and the marker has an orange background.</p>
        <div id="div1">
            <div>This text should have a blue background</div>
        </div>
    </body>
</html>