https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 320c5c44966d7728edff83d042341dfa3a426f85 authored by B2G Bumper Bot on 29 October 2015, 10:36:17 UTC
Bumping manifests a=b2g-bump
Tip revision: 320c5c4
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