blob: ba266bf814a995d6bd0b7563ff10cb04ce692581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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>
|