blob: e947812f423b80803c649f3fd495ce9b826d3143 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
var selectionRange = Selection_get();
var clonedElements = Range_cloneContents(selectionRange);
Selection_clear();
DOM_deleteAllChildren(document.body);
for (var i = 0; i < clonedElements.length; i++)
DOM_appendChild(document.body,clonedElements[i]);
}
</script>
</head>
<body>
<ul>
<li>One</li>
[<li>Two</li>
<li>Three
<ol>
<li>First</li>
<li>Second</li>]
<li>Third</li>
</ol>
</li>
</ul>
</body>
</html>