summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/invalidation/nth-child-when-ancestor-changes.html
blob: c4a97ee7e805c24e74874c330a9ed1f260229267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<meta charset="utf-8" />
<title>CSS Selectors Invalidation: :nth-child(... of class) when ancestor changes</title>
<link rel="author" title="Steinar H. Gunderson" href="sesse@chromium.org">
<link rel="match" href="nth-child-when-ancestor-changes-ref.html">
<link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index">
<style>
  .ancestor :nth-child(even of .c) {
    color: green;
  }
</style>
<div id="toggler">
  <p>Ignored</p>
  <p class="c">Not ignored</p>
  <p class="c">Not ignored</p>
  <p class="c">Not ignored</p>
  <p class="c">Not ignored</p>
  <p>Ignored</p>
</div>
<script>
  document.documentElement.offsetTop;
  toggler.classList.toggle("ancestor");
</script>