summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/lists/ol-reversed-nested-list.html
blob: 4bbf8890bc74a82f4fe21c6d0c07b4db677a56df (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
43
<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 a reversed list contains nested lists.</p>
        <ol id="list" start="10" reversed>
            <li>Ten</li>
            <li>Nine</li>
            <li>Eight</li>
            <li>Seven
                <ul>
                    <li>One</li>
                    <li>Two</li>
                </ul>
            </li>
            <li>Six</li>
            <li>Five</li>
            <ol reversed>
                <li>Two</li>
                <li>One</li>
            </ol>
            <li>Four</li>
            <li>Three</li>
            <li>Two</li>
        </ol>

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