https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0500f52f22bf97c83d9c60161c8b2cfa7016b88 authored by Ryan VanderMeulen on 27 February 2015, 18:00:36 UTC
Backed out changeset 5fb28d06581c (bug 1136855) for landing on the wrong branch.
Tip revision: c0500f5
input-disabled-fieldset-1.html
<!DOCTYPE html>
<html>
  <!-- Test: if input has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :-moz-ui-invalid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <fieldset>
        <input class='notinvalid' required>
      </fieldset>
    </fieldset>
  </body>
</html>
back to top