Revision 9c3dd5dd9c1777f3b956d4044e4b944ef749e2f5 authored by Ben Hearsum on 29 October 2012, 18:16:28 UTC, committed by Ben Hearsum on 29 October 2012, 18:16:28 UTC
1 parent 02d10a0
Raw File
spellcheck-textarea-ref.html
<!DOCTYPE html>
<html>
<body>
  <textarea spellcheck="true">blahblahblah</textarea>
  <script type="text/javascript">
    var box = document.getElementsByTagName("textarea")[0];
    box.focus(); //Bring the textbox into focus, triggering a spellcheck
    box.blur(); //Blur in order to make things similar to other tests otherwise
  </script>
</body>
</html>
back to top