summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/list-marker.html
blob: 335266375d8c322e8efda50318ead522c77c6635 (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
<html>
<head>
    <title></title>
</head>
<body>
    <p>
        Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12910">http://bugs.webkit.org/show_bug.cgi?id=12910</a>
        REGRESSION (r18756-r18765): list-bullet doesn't redraw properly when changing the list's content using JavaScript</i>.
    </p>
    <ul>
        <li>
            foo
            <div style="margin: 10px;"></div>
        </li>
    </ul>
    <ul style="list-style-position: inside;">
        <li>
            bar
            <div style="margin: 10px;"></div>
        </li>
    </ul>
    <ul style="direction: rtl;">
        <li>
            foo
            <div style="margin: 10px;"></div>
        </li>
    </ul>
    <ul style="direction: rtl; list-style-position: inside;">
        <li>
            bar
            <div style="margin: 10px;"></div>
        </li>
    </ul>
</body>
</html>