https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c130d27334ac673bfb1a581ea0374e936d9ec49f authored by ffxbld on 06 August 2015, 17:39:14 UTC
Added FIREFOX_40_0_RELEASE FIREFOX_40_0_BUILD3 tag(s) for changeset 0cd676c4b0f3. DONTBUILD CLOSED TREE a=release
Tip revision: c130d27
select-disabled-fieldset-1.html
<!DOCTYPE html>
<html>
  <!-- Test: if select has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :-moz-ui-valid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <fieldset>
        <select class='notvalid'></select>
      </fieldset>
    </fieldset>
  </body>
</html>
back to top