tor-browser

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

visited-inheritance-ref.html (420B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>inherited link color when modifying parent</title>
      4 <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
      5 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
      6 <style>
      7  div { color: green; }
      8  a { color: green; }
      9 </style>
     10 <main>
     11  <div id="parentdiv">
     12    <a href="" id="link">Visited link should be green</a>
     13  </div>
     14 </main>