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