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