tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

textarea-dyn-not-disabled.html (592B)


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