summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/textarea/textarea-dyn-disabled.html
blob: f206158b39ef51171ab9592165bc5d5c6185d489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if textarea is disabled and invalid, it is barred from constraint
             validation and should not be affected by :invalid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function doTest()
    {
      var e = document.getElementById('t');
      e.setCustomValidity('foo');
      e.disabled = 'true';
      document.documentElement.className='';
    }
    document.addEventListener("MozReftestInvalidate", doTest);
  </script>
  <body>
    <textarea class='notinvalid' id='t'></textarea>
  </body>
</html>