mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
611 B
HTML
29 lines
611 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>
|
|
x<br>
|
|
<textarea id="t" rows="4">
|
|
A
|
|
|
|
|
|
</textarea><br>
|
|
y
|
|
<script>
|
|
// Position the caret at the last line
|
|
var sel = window.getSelection();
|
|
sel.removeAllRanges();
|
|
|
|
var area = document.getElementById('t');
|
|
area.focus();
|
|
|
|
sendKey('RIGHT', window); // now after "A"
|
|
sendKey('RIGHT', window); //
|
|
sendKey('RIGHT', window); //
|
|
sendKey('RIGHT', window); // now at the last line
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|