Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/selectors/visited-inheritance.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<meta charset="utf-8">
<title>inherited link color when modifying parent</title>
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
<link rel="match" href="visited-inheritance-ref.html">
<style>
  div { color: red; }
  a { color: inherit; }
</style>
<main>
  <div id="parentdiv">
    <a href="" id="link">Visited link should be green</a>
  </div>
  <script>
  link.offsetTop;
  parentdiv.style.color = 'green';
  </script>
</main>