gecko/layout/reftests/css-invalid/input/input-customerror.html

13 lines
405 B
HTML
Raw Normal View History

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