wpt / css / selectors / visited-nested.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/selectors/visited-nested.html

<!DOCTYPE html>
<title>:visited in inheritance</title>
<link rel="match" href="visited-nested-ref.html">
<link rel="help" href="https://crbug.com/419001506">
<style>
  :visited {
     & {
        color: green;
     }
  }
</style>
<a href="">Test passes if this is green</a>

/css/selectors/visited-nested-ref.html

<!DOCTYPE html>
<title>Test reference</title>
<style>
  :visited {
    color: green;
  }
</style>
<a href="">Test passes if this is green</a>