mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
12 lines
360 B
HTML
12 lines
360 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div contenteditable spellcheck="true">blahblahblah</div>
|
|
<script type="text/javascript">
|
|
var box = document.getElementsByTagName("div")[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>
|