blob: 8f99cb0218a99dc3f8cc0e8e85581089cd7aed66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<!-- Test: fieldset undergoes constraint validation.
It should be affected by :valid pseudo-class. -->
<style>
fieldset:valid { display: none; }
</style>
<body>
<fieldset>
</fieldset>
</body>
</html>
|