https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 13e9d18ca590b76d5558aecbb63d0b7f911e5aac authored by donal meehan on 18 July 2023, 15:48:22 UTC
Set version to 115.0.3, a=me
Tip revision: 13e9d18
select-fieldset-legend.html
<!DOCTYPE html>
<html>
  <!-- Test: if select has a disabled fieldset ancestor, but is in the first
             legend, it is not barred from constraint validation and should be
             affected by :-moz-ui-valid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <legend>
        <select class='notvalid'></select>
      </legend>
    </fieldset>
  </body>
</html>
back to top