mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
12 lines
222 B
HTML
12 lines
222 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="init()">
|
|
<textarea>blahblahblah</textarea>
|
|
<script>
|
|
function init() {
|
|
document.querySelector("textarea").spellcheck = false;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|