summaryrefslogtreecommitdiffstats
path: root/editor/reftests/spellcheck-input-property-dynamic-inherit.html
blob: 1cf839baeee30beff4795d1ae3137c676d2cd7df (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<body onload="init()">
    <input class="spell-checked" type="text" value="blahblahblah">
    <script>
      function init() {
        document.body.spellcheck = true;
      }
    </script>
</body>
</html>