Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/layout/reftests/bugs/315920-19.html

20 lines
526 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<style>
span {color: red}
label {color: red}
input[disabled]:disabled ~ span {color: green}
input[disabled]:disabled + label {color: green}
input { display: none; }
</style>
</head>
<body onload='var i1 = document.getElementById("ffximage");
i1.setAttribute("disabled", "disabled");'>
<input type="image" id="ffximage"/>
<label for="ffximage">Should be no red</label>
<br>
<span>Should be no red</span>
</body>
</html