2010-08-18 03:31:02 +04:00
|
|
|
<!DOCTYPE HTML><html><head>
|
2011-06-29 22:22:39 +04:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
2010-08-18 03:31:02 +04:00
|
|
|
</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();
|
|
|
|
|
2012-01-17 23:40:52 +04:00
|
|
|
// Focus the span to put the caret at its beginning.
|
2010-08-18 03:31:02 +04:00
|
|
|
var area = document.getElementById('t');
|
|
|
|
area.focus();
|
|
|
|
|
2012-01-17 23:40:52 +04:00
|
|
|
// Enter a character in the span then delete it.
|
|
|
|
sendChar("W");
|
2012-01-16 23:15:59 +04:00
|
|
|
sendKey("BACK_SPACE");
|
2010-08-18 03:31:02 +04:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|