summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/lists/ol-reversed-nested-items.html
blob: 4022209e0ceb6adda5a211b55c83fee433878962 (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
<html>
    <head>
        <script src="resources/dump-list.js"></script>
        <script>
            function test()
            {
                if (window.testRunner)
                    testRunner.dumpAsText();

                var list = document.getElementById("list");
                document.getElementById("console").innerHTML = dumpList(list);

                // Don't show the actual list as it is useless in the text-only mode.
                list.parentNode.removeChild(list);
            }
        </script>
    </head>
    <body onload="test()">
        <p>This tests that list items are properly marked when some of the items are indirect children of a reversed list.</p>
        <ol id="list" reversed="reversed">
            <li>Twelve</li>
            <li>Eleven</li>
            <li>Ten</li>
            <li>Nine
            <li>Eight</li>
                <b>
                    <li>Seven</li>
                </b>
            </li>
            <li value="4">Four</li>
            <li>Three</li>
            <div>
                <li>Two</li>
                <li>One</li>
            </div>
            <li>Zero</li>
            <li>Minus One</li>
        </ol>

        <div id="console"></div>
    </body>
</html>