blob: 0a012f38380d535193843f792639484f67a0de50 [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</li>
[</ul>]
</body>
</html>