blob: 383293bc94e672addef2bae8a110f85aed3ad78f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
DOM_deleteAllChildren(document.body);
var p1 = DOM_createElement(document,"P");
var p2 = DOM_createElement(document,"P");
DOM_appendChild(p1,DOM_createTextNode(document,"First"));
DOM_appendChild(p2,DOM_createTextNode(document,"Second"));
DOM_appendChild(document.body,p1);
DOM_appendChild(document.body,DOM_createTextNode(document," "));
DOM_appendChild(document.body,DOM_createTextNode(document," "));
DOM_appendChild(document.body,DOM_createTextNode(document," "));
DOM_appendChild(document.body,DOM_createTextNode(document," "));
DOM_appendChild(document.body,p2);
Selection_setEmptySelectionAt(document.body,3);
Cursor_insertCharacter("X");
showSelection();
}
</script>
</head>
<body>
</body>
</html>