mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00: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>
|