summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug106855-2.html
blob: 040d03363260089bc9ec7a2eed48ef0541664553 (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
<!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('DOWN');  // now after "A"
  sendKey('DOWN');  // 
  sendKey('DOWN');  // 
  sendKey('DOWN');  // now at the last line
</script>
</body>
</html>