blob: b2c8185ab85b927b3ad5192d2561360d1dd54b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML><html><head>
<script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<span>not editable</span><span id="x" contenteditable="true" spellcheck="false">navigable|unnavigable</span>
<script>
// Position the caret after "|"
var sel = window.getSelection();
sel.removeAllRanges();
var range = document.createRange();
var x = document.getElementById('x');
var t = x.firstChild;
range.setStart(t, 10);
range.setEnd(t, 10);
sel.addRange(range);
x.focus();
sendKey('RIGHT'); // Try to move the caret one position to the right
</script>
</body>
</html>
|