tor-browser

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

ignore-pseudo-class.html (218B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4  :-moz-placeholder {
      5    color: red;
      6  }
      7  :placeholder {
      8    color: red;
      9  }
     10 </style>
     11 <body>
     12  <input placeholder='foobar'>
     13  <textarea placeholder='foobar'></textarea>
     14 </body>
     15 </html>