зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
321 B
HTML
14 строки
321 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<div contenteditable id="testBox">blahblahblah</div>
|
|
<script type="text/javascript">
|
|
//Adding focus to the textbox should trigger a spellcheck
|
|
document.getElementById("testBox").focus();
|
|
document.getElementById("testBox").blur();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|