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-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