Raw File
bug389321-1.html
<!DOCTYPE HTML><html><head>
  <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>
back to top