https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 25b8e6a35738ba250260c414ecad9dd774344f9d authored by ffxbld on 20 January 2016, 23:40:12 UTC
Added FIREFOX_44_0_RELEASE FIREFOX_44_0_BUILD2 tag(s) for changeset 5e7156ebdc78. DONTBUILD CLOSED TREE a=release
Tip revision: 25b8e6a
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