summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/select/select-disabled-fieldset-1.html
blob: 9ba5a9600a2ad56f273dc630e19d1bbcb6456edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if select 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('s');
      e.setCustomValidity('foo');
      document.documentElement.className='';
    }
  </script>
  <body onload="onLoadHandler();">
    <fieldset disabled>
      <fieldset>
        <select class='notinvalid' id='s'></select>
      </fieldset>
    </fieldset>
  </body>
</html>