1
0
Fork 0
firefox/testing/web-platform/tests/css/selectors/visited-inheritance.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
551 B
HTML

<!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">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<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>