https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3cd70cf272437edf2cde2c8112891d3e1110279a authored by ffxbld on 21 December 2015, 21:03:35 UTC
Added FIREFOX_43_0_2_RELEASE FIREFOX_43_0_2_BUILD1 tag(s) for changeset 937ac46261e2. DONTBUILD CLOSED TREE a=release
Tip revision: 3cd70cf
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