wpt / css / selectors / invalidation / nth-child-of-pseudo-class.html

Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/selectors/invalidation/nth-child-of-pseudo-class.html

<!doctype html>
<meta charset="utf-8">
<title>CSS Selectors Invalidation: :nth-child(... of pseudo-class)</title>
<link rel="author" title="Zach Hoffman" href="mailto:zach@zrhoffman.net">
<link rel="match" href="nth-child-of-pseudo-class-ref.html">
<link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index">
<style>
  p:nth-child(odd of :defined) {
    color: green;
  }

  not-defined, my-element {
    display: block;
    margin-block: 1em;
    margin-inline: 0;
  }
</style>
<div>
  <not-defined>Ignored</not-defined>
  <not-defined>Ignored</not-defined>
  <p>Not ignored</p>
  <my-element>Selectively ignored</my-element>
  <p>Not ignored</p>
  <p>Not ignored</p>
  <p>Not ignored</p>
  <not-defined>Ignored</not-defined>
</div>
<script>
  document.documentElement.offsetTop;
  customElements.define("my-element", class MyElement extends HTMLElement{});
</script>

/css/selectors/invalidation/nth-child-of-pseudo-class-ref.html

<!doctype html>
<meta charset=utf-8>
<title>CSS Test Reference</title>
<div>
  <p>Ignored</p>
  <p>Ignored</p>
  <p style="color: green">Not ignored</p>
  <p>Selectively ignored</p>
  <p style="color: green">Not ignored</p>
  <p>Not ignored</p>
  <p style="color: green">Not ignored</p>
  <p>Ignored</p>
</div>