summaryrefslogtreecommitdiffstats
path: root/editor/reftests/spellcheck-contenteditable-property-dynamic-override-inherit.html
blob: 26c5a42236858f17093d4bcaeb26ca00cb034a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<body onload="init()" spellcheck="true">
    <div contenteditable>blahblahblah</div>
    <script>
      function init() {
        document.body.spellcheck = false;
      }
    </script>
</body>
</html>