tor-browser

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

352980-3e.html (590B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <style>
      5   span { color: red }
      6   :default + span { color: green }
      7   span.reverse { color: green }
      8   :default + span.reverse { color: red }
      9   input { display: none }
     10  </style>
     11 </head>
     12 <body onload="document.getElementById('foo').type = 'image';
     13               document.getElementById('bar').type = ''">
     14  <form>
     15    <input id="bar" type="submit"><span class="reverse">This should be green</span>
     16    <input id="foo"><span>This should be green</span>
     17    <input type="image"><span class="reverse">This should be green</span>
     18  </form>
     19 </body>
     20 </html>