mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
817ee803d6
This adds a CSS psuedo class to fieldset that acts much in the same way as the one on form.
18 lines
289 B
HTML
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>
|
|
|