blob: a0528ac7e5457aa30b2d051f59832373cd9bbd6d (
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 the list contains nested lists.</p>
<ol id="list" start="10">
<li>Ten</li>
<li>Eleven</li>
<li>Twelve</li>
<li>Thirteen
<ul>
<li>One</li>
<li>Two</li>
</ul>
</li>
<li>Fourteen</li>
<li>Fifteen</li>
<ol>
<li>One</li>
<li>Two</li>
</ol>
<li>Sixteen</li>
<li>Seventeen</li>
</ol>
<div id="console"></div>
</body>
</html>
|