blob: 4c22fe99f607e97987e78f972624cffc0e0a1ca3 [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>