summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui-invalid/button/button-type-invalid.html
blob: a6e20d1a949d5201365be5ca2c02b1eba9dc4ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if a button has a custom error when barred from constraint
             validation then move a type candidate for constraint validation,
             it should not be affected by :invalid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function onLoadHandler()
    {
      var b = document.getElementById('b');
      b.setCustomValidity('foo');
      b.type = 'submit';
      document.documentElement.className='';
    }
  </script>
  <body onload="onLoadHandler();">
    <button class='invalid' type='button' id='b'></button>
  </body>
</html>