mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 18:30:16 +00:00
12 lines
229 B
HTML
12 lines
229 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body onload="init()">
|
||
|
<input class="spell-checked" type="text" value="blahblahblah">
|
||
|
<script>
|
||
|
function init() {
|
||
|
document.body.spellcheck = true;
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|