Raw File
bug512295-1-ref.html
<!DOCTYPE HTML><html><head>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<div contenteditable="true">
<p id="p">A B CD EFG<br>
  1234567890</p>
</div>
x
<script>
  // Position the caret at the end of the P element
  var p = document.getElementById('p');
  var div = p.parentNode;
  div.focus();
  var sel = window.getSelection();
  sel.removeAllRanges();
  var range = document.createRange();
  range.setStart(p, p.childNodes.length);
  range.setEnd(p, p.childNodes.length);
  sel.addRange(range);
</script>

</body>
</html>
back to top