Revision e5449210b958ed555efab0ae0ecc9f2066bf1540 authored by B2G Bumper Bot on 17 March 2014, 06:51:03 UTC, committed by B2G Bumper Bot on 17 March 2014, 06:51:03 UTC
1 parent acbbec1
Raw File
unneeded_scroll.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>
back to top