summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug482484.html
blob: 1f05124a2b3afa8c0c10632aeaeb97cea95aba89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML><html><head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<div contentEditable="true" id="div" spellcheck="false"><p id="p">BC</p></div>
<script>
  // Position the caret before the "B"
  var div = document.getElementById('div');
  div.focus();
  var p = document.getElementById('p');
  var sel = window.getSelection();
  sel.removeAllRanges();
  var range = document.createRange();
  range.setStart(p.firstChild, 0)
  range.setEnd(p.firstChild, 0);
  sel.addRange(range);

  sendKey('UP');  // move UP
  sendChar('A');  // insert "A"
</script>
</body>
</html>