tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

315920-7b.html (618B)


      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>