summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/textarea-minlength-valid-change.html
blob: 95faa547637aa004d4b45e50bcd7dfbfc0f40995 (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 valid if the user edits and it's not too short -->
  <head>
    <style>
      :valid { background-color:green; }
      :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>