gecko/layout/reftests/css-valid/select/select-disabled.html

13 lines
330 B
HTML

<!DOCTYPE html>
<html>
<!-- Test: if select is disabled, it is barred from constraint validation
and should not be affected by :valid pseudo-class. -->
<style>
select { background-color: green; }
select:valid { background-color: red; }
</style>
<body>
<select disabled></select>
</body>
</html>