https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 779c31fcbd09e5ca95cb4eaba7a459e8b31a5aa4 authored by ffxbld on 08 December 2016, 02:33:01 UTC
Added FENNEC_50_1_0_RELEASE FENNEC_50_1_0_BUILD1 tag(s) for changeset bbb66c18fdba. DONTBUILD CLOSED TREE a=release
Tip revision: 779c31f
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