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