gecko/layout/reftests/bugs/315920-23-ref.html

19 lines
327 B
HTML
Raw Normal View History

2007-12-20 19:36:38 -08:00
<!DOCTYPE html>
<html>
<head>
<style>
label {color: green}
</style>
</head>
<body>
<div>
<input id="one" disabled="disabled"/>
<label for="one">Should be no red</label>
</div>
<div>
<input id="two"/>
<label for="two">Should be no red</label>
</div>
</body>
</html>