https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7bea3899a76701de40491d0709e52b1f75ad1c1a authored by ffxbld on 06 November 2014, 19:44:31 UTC
Added FIREFOX_33_1_RELEASE FIREFOX_33_1_BUILD3 tag(s) for changeset a4d51da32fe7. DONTBUILD CLOSED TREE a=release
Tip revision: 7bea389
button-fieldset-legend.html
<!DOCTYPE html>
<html>
  <!-- Test: if button has a disabled fieldset ancestor, but is in the first
             legend, it is not barred from constraint validation and should be
             affected by :valid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <legend>
        <button class='valid'></button>
      </legend>
    </fieldset>
  </body>
</html>
back to top