blob: 4aed0e4906f3a98592f5429c8c2601bdfb42a3e0 [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>
[<p>Here is some text</p>]
</body>
</html>