summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug106855-1-ref.html
blob: 9ed8da4fc23886c52f65a63fd7314b5924a80ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML><html><head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
x<br>
<textarea id="t" rows="4" spellcheck="false" style="-moz-appearance: none">
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>