blob: f1de00799757fd73377e3873662e6d112afc5191 (
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 type="text/javascript" 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>
|