Source code

Revision control

Copy as Markdown

Other Tools

<!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();
// Do nothing else.
</script>
</body>
</html>