Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/editor/reftests/824080-7-ref.html

20 lines
361 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function doTest()
{
var editor = document.getElementById("editor");
editor.focus();
editor.selectionStart = 2;
editor.selectionEnd = 4;
}
</script>
</head>
<body onload="doTest()">
<p>normal text</p>
<textarea id="editor">textarea</textarea>
</body>
</html>