summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui-invalid/button/button-disabled-fieldset-2.html
blob: 4ee147a70751bd2da3cb992af6b5a6e72ef59e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!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 :-moz-ui-invalid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function onloadHandler()
    {
      var e = document.getElementById('b');
      e.setCustomValidity('foo');
      var fieldsets = document.getElementsByTagName("fieldset");
      fieldsets[1].disabled = true;
      fieldsets[0].disabled = false;
      document.documentElement.className='';
    }
  </script>
  <body onload="onloadHandler();">
    <fieldset disabled>
      <fieldset>
        <button class='notinvalid' id='b'></button>
      </fieldset>
    </fieldset>
  </body>
</html>