gecko/layout/reftests/css-valid/textarea/textarea-customerror.html

13 lines
428 B
HTML
Raw Normal View History

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