blob: 8557928dbd5b659549e1b5f576ecf2faa9843bbc (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<html>
<body>
<form id="form"><input type="checkbox" id="two" checked="true"/>
<label for="two" style="color: green">Should be no red</label><input type="checkbox" name="group1" id="one" value="1"/>
<label for="one" style="color: green">Should be no red</label>
</form>
</body>
</html>
|