1
0
Fork 0
firefox/testing/web-platform/tests/css/selectors/visited-inheritance-ref.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

14 lines
420 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="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<style>
div { color: green; }
a { color: green; }
</style>
<main>
<div id="parentdiv">
<a href="" id="link">Visited link should be green</a>
</div>
</main>