https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 56680d89da3aaf9d56ff2e87b3dcff49981edf43 authored by ffxbld on 10 December 2015, 16:50:42 UTC
Added FENNEC_43_0_RELEASE FENNEC_43_0_BUILD1 tag(s) for changeset deadefaeb38e. DONTBUILD CLOSED TREE a=release
Tip revision: 56680d8
button-disabled-fieldset-1.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if button has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :invalid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function onLoadHandler()
    {
      var e = document.getElementById('b');
      e.setCustomValidity('foo');
      document.documentElement.className='';
    }
  </script>
  <body onload="onLoadHandler();">
    <fieldset disabled>
      <fieldset>
        <button class='notinvalid' id='b'></button>
      </fieldset>
    </fieldset>
  </body>
</html>
back to top