blob: 9bc1a883e50594eb61252bb89ea96c1b2b2bbbe5 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
var p = document.getElementsByTagName("P")[0];
var text = DOM_createTextNode(document,"");
DOM_appendChild(p,text);
Selection_setEmptySelectionAt(text,0);
Cursor_insertCharacter("X");
showSelection();
}
</script>
</head>
<body>
<p><br></p>
</body>
</html>