2010-10-08 12:49:47 -07:00
|
|
|
<!DOCTYPE HTML><html><head>
|
2011-06-29 11:22:39 -07:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
2010-10-08 12:49:47 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<span>not editable</span><span id="x" contenteditable="true">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();
|
|
|
|
|
2011-12-16 05:38:45 -08:00
|
|
|
sendKey('RIGHT'); // Try to move the caret one position to the right
|
2010-10-08 12:49:47 -07:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|