summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/textarea-minlength-ui-valid-change.html
blob: 18cecef138a91aeb6ba076de53afa79f51dc6b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html>
  <!-- Test: textarea with minlength is -moz-ui-valid if the user edits and it's not too short -->
  <head>
    <style>
      :-moz-ui-valid { background-color:green; }
      :-moz-ui-invalid { background-color:red; }
      * { background-color:white; }
    </style>
    <script src="/tests/SimpleTest/EventUtils.js"></script>
    <script>
      function runTest() {
        var textarea = document.getElementById('textarea');
        textarea.setSelectionRange(textarea.value.length, textarea.value.length)
        textarea.focus();
        sendString("o"); // so that it becomes invalid first
        textarea.blur();
        textarea.focus();
        sendString("o");
        textarea.blur(); // to hide the caret
        document.documentElement.className='';
      }
    </script>
  </head>
  <body onload="runTest()">
    <textarea id="textarea" minlength="3">f</textarea>
  </body>
</html>