mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
524 B
HTML
17 lines
524 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>
|
|
// Only focus the span to put the caret at its beginning
|
|
var sel = window.getSelection();
|
|
sel.removeAllRanges();
|
|
|
|
var area = document.getElementById('t');
|
|
area.focus();
|
|
</script>
|
|
</body>
|
|
</html>
|