summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/form/form-static-invalid.html
blob: aea413e491e991ef95f2c6e6ddb9dca18f069455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<!--form with only invalid elements -->
<html>
  <head>
    <style>
      form:invalid { display: none; }
    </style>
  </head>
  <body>
    <form>
      <input required>
    </form>
  </body>
</html>