mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
11 lines
247 B
HTML
11 lines
247 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<body onload="init()">
|
||
|
|
<input class="spell-checked" type="text" value="blahblahblah">
|
||
|
|
<script>
|
||
|
|
function init() {
|
||
|
|
document.querySelector("input").spellcheck = true;
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|