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