gecko/layout/reftests/css-invalid/input/input-dyn-not-readonly.html

13 lines
472 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: if input is no longer readonly, it is candidate for constraint
validation and should be affected by :invalid pseudo-class. -->
<style>
input { background-color: red; }
input:invalid { background-color: green; }
</style>
<body onload="document.getElementById('i').removeAttribute('readonly'); document.documentElement.className='';">
<input id='i' readonly required>
</body>
</html>