gecko-dev/layout/reftests/css-invalid/fieldset/fieldset-div-invalid.html
Mina Almasry 52824c3d8a Bug 717181 - Make <fieldset> invalid if they contain an invalid form control; r=mounir
This adds a CSS psuedo class to fieldset that acts much in the same way as the one
on form.
2013-08-16 20:32:47 -04:00

18 lines
285 B
HTML

<!DOCTYPE html>
<!-- fieldset with input in div should become invalid -->
<html>
<head>
<style>
fieldset:invalid { display: none ;}
</style>
</head>
<body>
<fieldset>
<div>
<input required value="">
</div>
</fieldset>
</body>
</html>