зеркало из https://github.com/mozilla/pjs.git
13 строки
317 B
HTML
13 строки
317 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<!-- Test: if input is readonly, it is barred from constraint validation
|
||
|
and should not be affected by :valid pseudo-class. -->
|
||
|
<style>
|
||
|
input { background-color: green; }
|
||
|
input:valid { background-color: red; }
|
||
|
</style>
|
||
|
<body>
|
||
|
<input readonly>
|
||
|
</body>
|
||
|
</html>
|