gecko/layout/reftests/css-invalid/button/button-invalid.html

13 lines
422 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: if button has a custom error, it should not be affected by :invalid
pseudo-class. -->
<style>
button { background-color: red; }
button:invalid { background-color: green; }
</style>
<body onload="document.getElementById('b').setCustomValidity('foo'); document.documentElement.className='';">
<button id='b'></button>
</body>
</html>