mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
472 B
HTML
13 lines
472 B
HTML
|
<!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>
|