tenfourfox/editor/reftests/spellcheck-textarea-focused.html

14 lines
315 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body>
<textarea id="testBox">blahblahblah</textarea>
<script type="text/javascript">
//Adding focus to the textbox should trigger a spellcheck
document.getElementById("testBox").focus();
document.getElementById("testBox").blur();
</script>
</body>
</html>