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