blob: f678865930c400d439fee11a38bdf2b1409e9561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML><html><head>
<script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<span contenteditable id="t" style="border: 1px dashed green; min-height: 2px; padding-right: 20px;"> </span></body>
<script>
var sel = window.getSelection();
sel.removeAllRanges();
// Focus the span to put the caret at its beginning.
var area = document.getElementById('t');
area.focus();
// Enter a character in the span then delete it.
sendChar("W");
sendKey("BACK_SPACE");
</script>
</body>
</html>
|