textarea-create.html 694 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html class="reftest-wait">
  3. <link rel='stylesheet' type='text/css' href='style.css'>
  4. <body>
  5. <script>
  6. var body = document.body;
  7. var i = document.createElement('textarea');
  8. i.autofocus = false;
  9. body.appendChild(i);
  10. i = document.createElement('textarea');
  11. i.autofocus = true;
  12. i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
  13. body.appendChild(i);
  14. i = document.createElement('textarea');
  15. i.autofocus = true;
  16. i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
  17. body.appendChild(i);
  18. </script>
  19. </body>
  20. </html>