gecko/layout/reftests/css-valid/button/button-reset.html

13 lines
343 B
HTML

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