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