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>