https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7c9042ed1194751d9488ca33384dd674ccc11406 authored by seabld on 25 February 2013, 02:14:22 UTC
Added tag SEAMONKEY_2_17b1_RELEASE for changeset FIREFOX_20_0b1_BUILD2. CLOSED TREE a=release
Tip revision: 7c9042e
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