mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
457 B
HTML
25 lines
457 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<script>
|
||
|
document.addEventListener("DOMContentLoaded", function() {
|
||
|
var t = document.querySelector("textarea");
|
||
|
t.focus();
|
||
|
document.querySelector("#dst").appendChild(t);
|
||
|
}, false);
|
||
|
</script>
|
||
|
<div>
|
||
|
<textarea>I
|
||
|
am
|
||
|
a
|
||
|
long
|
||
|
long
|
||
|
long
|
||
|
long
|
||
|
textarea
|
||
|
</textarea>
|
||
|
</div>
|
||
|
<div id="dst"></div>
|
||
|
</body>
|
||
|
</html>
|