https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bb63cc2f6690ee447fc9bef820c7aaa2573b41c1 authored by ffxbld on 16 March 2016, 00:04:17 UTC
Added FENNEC_45_0_1_RELEASE FENNEC_45_0_1_BUILD1 tag(s) for changeset 2a5af03a7b3e. DONTBUILD CLOSED TREE a=release
Tip revision: bb63cc2
button-fieldset-legend.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- 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 :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>
      <legend>
        <button class='invalid' id='b'></button>
      </legend>
    </fieldset>
  </body>
</html>
back to top