mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
629 B
HTML
23 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
label {color: red}
|
|
#one[disabled]:disabled + label {color: green}
|
|
#two:not([disabled]):not(:disabled) + label {color: green}
|
|
</style>
|
|
</head>
|
|
<body onload='var elem = document.getElementById("one");
|
|
elem.setAttribute("disabled", "disabled");
|
|
document.getElementById("two").removeAttribute("disabled")'>
|
|
<div>
|
|
<input id="one"/>
|
|
<label for="one">Should be no red</label>
|
|
</div>
|
|
<div>
|
|
<input id="two" disabled="disabled"/>
|
|
<label for="two">Should be no red</label>
|
|
</div>
|
|
</body>
|
|
</html>
|