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
bug106855-1-ref.html
<!DOCTYPE HTML><html><head>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
x<br>
<textarea id="t" rows="4">
A


</textarea><br>
y
<script>
  // Position the caret at the last line
  var sel = window.getSelection();
  sel.removeAllRanges();

  var area = document.getElementById('t');
  area.focus();

  sendKey('RIGHT');  // now after "A"
  sendKey('RIGHT');  // 
  sendKey('RIGHT');  // 
  sendKey('RIGHT');  // now at the last line
</script>

</body>
</html>
back to top