4 <p id=
"description">Placing cursor at the end of first list and executing forward delete should merge the second list with the first one.
</p>
6 <ol><li>one
</li><li>two
</li><li id=
"li">three
</li></ol>
7 <ol><li>four
</li><li>five
</li><li>six
</li></ol>
9 <script src=
"../../resources/dump-as-markup.js"></script>
11 var li
= document
.getElementById("li");
12 var selection
= window
.getSelection();
13 selection
.collapse(li
, li
.childNodes
.length
);
14 document
.execCommand("forwardDelete");
15 Markup
.description(document
.getElementById('description').textContent
);
16 Markup
.dump(document
.querySelector('div'));