mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-13 03:21:41 +00:00
13 lines
319 B
HTML
13 lines
319 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!-- Test: fieldset is always barred from constraint validation.
|
|
It should not be affected by :valid pseudo-class. -->
|
|
<style>
|
|
fieldset { background-color: green; }
|
|
fieldset:valid { background-color: red; }
|
|
</style>
|
|
<body>
|
|
<fieldset></fieldset>
|
|
</body>
|
|
</html>
|