tor-browser

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

not-links-ref.html (364B)


      1 <!DOCTYPE html>
      2 <title>Test that *:not(:link):not(:visited) does not match links</title>
      3 <style>
      4  span {
      5    background-color: green;
      6  }
      7 </style>
      8 <body>
      9  <div>
     10    <a href="#">Unvisited (<span>Green</span>)</a>
     11    <a href="#">Visited (<span>Green</span>)</a>
     12    <span>Green</span>
     13  </div>
     14  <p>
     15    Only "Green" should have green backgrounds.
     16  </p>
     17 </body>