tenfourfox/layout/reftests/css-invalid/fieldset/fieldset-nested-valid-invalid-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
497 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 style="background-color:red;">
<fieldset style="background-color: green;">
<input>
</fieldset>
<fieldset style="background-color: red">
<input required>
</fieldset>
</fieldset>
</body>
</html>