https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b5cde499fb2dd7724b22b0733261d4db0bd660c2 authored by ffxbld on 28 October 2015, 20:37:59 UTC
Added FENNEC_42_0_RELEASE FENNEC_42_0_BUILD1 tag(s) for changeset a5bdd5907d99. DONTBUILD CLOSED TREE a=release
Tip revision: b5cde49
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