mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
474 B
HTML
18 lines
474 B
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>
|
|
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>
|