gecko-dev/layout/reftests/css-invalid/fieldset/fieldset-nested-valid-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

22 lines
403 B
HTML

<!DOCTYPE html>
<!-- Nested fieldsets should be assigned validation correctly -->
<html>
<head>
<style>
fieldset:valid { background-color: green; }
fieldset:invalid { background-color: red; }
</style>
</head>
<body>
<fieldset>
<fieldset>
<input>
</fieldset>
<fieldset>
<input required>
</fieldset>
</fieldset>
</body>
</html>