summaryrefslogtreecommitdiffstats
path: root/editor/reftests/spellcheck-contenteditable-property-dynamic-inherit.html
blob: feb623dbb6e6f927eb1a8751f2e6a5b7ff955a22 (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.spellcheck = false;
      }
    </script>
</body>
</html>