3 <div contenteditable=
"true">
4 This tests outdenting ordered lists that contains an unordered-list. You should see
1 through
3 before numbers
"two" through
"four".
7 <li id=
"start">two
</li></ol>
8 <ul><li>three
</li></ul>
9 <ol><li id=
"end">four
</li></ol>
14 <li>Before:
<span id=
"c1"></span></li>
15 <li>After:
<span id=
"c2"></span></li>
18 <script type=
"text/javascript">
20 if (window
.testRunner
) {
21 testRunner
.dumpEditingCallbacks();
22 testRunner
.dumpAsText();
25 var e
= document
.getElementById('e');
27 document
.getElementById('c1').appendChild(document
.createTextNode(e
.innerHTML
));
29 var s
= window
.getSelection();
30 var r
= document
.createRange();
31 r
.setStart(document
.getElementById('start'),0);
32 r
.setEnd(document
.getElementById('end'),1);
35 document
.execCommand("Outdent", false, "");
37 document
.getElementById('c2').appendChild(document
.createTextNode(e
.innerHTML
));