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