mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
20 lines
580 B
HTML
20 lines
580 B
HTML
<!DOCTYPE HTML><html><head>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" 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>
|
|
// Enter a character in the span and delete it
|
|
var sel = window.getSelection();
|
|
sel.removeAllRanges();
|
|
|
|
var area = document.getElementById('t');
|
|
area.focus();
|
|
|
|
sendKey("W"); // enter a character
|
|
sendKey("VK_BACK_SPACE");
|
|
</script>
|
|
</body>
|
|
</html>
|