summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/form/form-valid-and-barred-remove-barred.html
blob: dd63b8c5c45d6fd9e6900e2c9923dd92d76726ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<!-- form with one valid element and a barred for constraint
validation element then you remove the second element -->
<html class='reftest-wait'>
  <head>
    <style>
      form:invalid { display: none; }
    </style>
  </head>
  <script>
    function onloadHandler()
    {
      document.forms[0].removeChild(document.getElementById('j'));
      document.documentElement.className = '';
    }
  </script>
  <body onload='onloadHandler();'>
    <form>
      <input id='i' value='foo'required>
      <input id='j' value='bar' readonly>
    </form>
  </body>
</html>