tor-browser

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

caret-color-on-visited-1.html (408B)


      1 <!DOCTYPE html>
      2 <style>
      3 @font-face {
      4  font-family: Ahem;
      5  src: url(Ahem.ttf);
      6 }
      7 a {
      8  caret-color: red;
      9 }
     10 a:visited {
     11  caret-color: green;
     12 }
     13 textarea {
     14  caret-color: inherit;
     15  font: 16px/1 Ahem;
     16  outline: none;
     17  border: 0 none;
     18  resize: none;
     19  padding: 0;
     20  margin: 0;
     21 }
     22 </style>
     23 <a href="visited-page.html"><textarea></textarea></a>
     24 <script>
     25  document.querySelector('textarea').focus();
     26 </script>