mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-01 16:31:34 +00:00
12 lines
241 B
HTML
12 lines
241 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="init()">
|
|
<div contenteditable spellcheck="true">blahblahblah</div>
|
|
<script>
|
|
function init() {
|
|
document.querySelector("div").spellcheck = false;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|