mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|