Mypal/editor/reftests/824080-1-ref.html

18 lines
335 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function doTest()
{
var editor = document.getElementById("editor");
document.getSelection().selectAllChildren(document.body);
}
</script>
</head>
<body onload="doTest();">
<p>normal text</p>
<div id="editor">editable text</div>
</body>
</html>