mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-22 11:33:03 +00:00
14 lines
315 B
HTML
14 lines
315 B
HTML
|
<!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>
|