tor-browser

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

button-disabled-fieldset-1.html (406B)


      1 <!DOCTYPE html>
      2 <html>
      3  <!-- Test: if button has a disabled fieldset ancestor, it is barred from
      4             constraint validation and should not be affected by :valid
      5             pseudo-class. -->
      6  <link rel='stylesheet' type='text/css' href='style.css'>
      7  <body>
      8    <fieldset disabled>
      9      <fieldset>
     10        <button class='notvalid'></button>
     11      </fieldset>
     12    </fieldset>
     13  </body>
     14 </html>