mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
13 lines
308 B
HTML
13 lines
308 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>
|