Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 label {color: red}
6 input[checked]:default:checked ~ label {color: green}
7 </style>
8 </head>
9 <body onload='var e1 = document.getElementById("one");
10 e1.setAttribute("checked", "false");
11 document.getElementById("two").removeAttribute("checked");'>
12 <form>
13 <input type="radio" name="group1" id="one" value="1"/>
14 <label for="one">Should be no red</label><br>
15 <input type="radio" name="group1" id="two" value="2" checked/>
16 <label for="two">Should be no red</label>
17 </form>
18 </body>
19 </html>