Revision c69bfe661eac856fc8e35d8618ea040f2d606c38 authored by Andrea Marchesini on 23 January 2014, 19:31:01 UTC, committed by Andrea Marchesini on 23 January 2014, 19:31:01 UTC
1 parent c64c687
Raw File
bug389321-1-ref.html
<!DOCTYPE HTML><html><head>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<span contenteditable id="t" style="border: 1px dashed green; min-height: 2px; padding-right: 20px;"> </span></body>
<script>
  var sel = window.getSelection();
  sel.removeAllRanges();

  // Focus the span to put the caret at its beginning.
  var area = document.getElementById('t');
  area.focus();

  // Do nothing else.
</script>
</body>
</html>
back to top