summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-valid/textarea/textarea-dyn-not-disabled.html
blob: 5c8bec182401a2247e2f20bb34771ca8bf66ada7 (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').removeAttribute('disabled');
        document.documentElement.className='';
      }
      document.addEventListener("MozReftestInvalidate", doTest);
    </script>
  </head>
  <!-- Test: if textarea is not disabled, it is candidate for constraint validation
             and should be affected by :valid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <textarea class='valid' id='t' disabled></textarea>
  </body>
</html>