1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-19 14:59:10 +00:00
Files
UXP/layout/reftests/css-invalid/fieldset/fieldset-nested-invalid.html
T

18 lines
289 B
HTML

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