https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b3c5337da561db8369f09db12e84238841401e6d authored by ffxbld on 18 December 2014, 03:26:24 UTC
Added FENNEC_34_0_1_RELEASE FENNEC_34_0_1_BUILD1 tag(s) for changeset c02644846c0d. DONTBUILD CLOSED TREE a=release
Tip revision: b3c5337
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