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