3 <script src=
"resources/dump-list.js"></script>
8 testRunner
.dumpAsText();
10 var list
= document
.getElementById("list");
11 document
.getElementById("console").innerHTML
= dumpList(list
);
13 // Don't show the actual list as it is useless in the text-only mode.
14 list
.parentNode
.removeChild(list
);
18 <body onload=
"test()">
19 <p>This tests that list items are properly marked when some of the items are indirect children of the list element.
</p>
30 <li value=
"10">Ten
</li>
40 <div id=
"console"></div>