summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/textarea-minlength-ui-invalid-change.html
blob: e52fba71e28eec03514391db57eb733c490e57f6 (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
<!DOCTYPE HTML>
<html>
  <!-- Test: textarea with minlength is -moz-ui-invalid if the user edits and it's too short -->
  <head>
    <style>
      :-moz-ui-valid { background-color:green; }
      :-moz-ui-invalid { background-color:red; }
      * { box-shadow:none; 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");
        textarea.blur(); // to hide the caret
        document.documentElement.className='';
      }
    </script>
  </head>
  <body onload="runTest()">
    <textarea id="textarea" minlength="4">fo</textarea>
  </body>
</html>