https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3583ddb8733139cc1eebc6749323f1ca42b7c90d authored by ffxbld on 25 November 2014, 04:25:38 UTC
Added FIREFOX_34_0_RELEASE FIREFOX_34_0_BUILD1 tag(s) for changeset 75d91bb5a07d. DONTBUILD CLOSED TREE a=release
Tip revision: 3583ddb
button-disabled-fieldset-1.html
<!DOCTYPE html>
<html>
  <!-- Test: if button has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :valid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <fieldset>
        <button class='notvalid'></button>
      </fieldset>
    </fieldset>
  </body>
</html>
back to top