blob: aa4e47c2ca9ab2caaacac6eea29137aef071c8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<body onload="init()">
<div contenteditable>blahblahblah</div>
<script>
function init() {
document.body.setAttribute("spellcheck", "false");
}
</script>
</body>
</html>
|