Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-shadow-parts/host-part-003.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Shadow Parts - :host::part() not matching in inner scope</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="outer">
  <template shadowrootmode="open">
    <style>
      :host::part(x) {
        color: red;
      }
    </style>
    <div id="inner">
      <template shadowrootmode="open">
        <style>
          p { color: green; }
        </style>
        <p part="x">This should not be red</p>
      </template>
    </div>
  </template>
</div>
<script>
  test(() => {
    const part = outer.shadowRoot.querySelector("#inner").shadowRoot.querySelector("p");
    assert_equals(getComputedStyle(part).color, "rgb(0, 128, 0)");
  }, ":host::part() should only match when the part is in the same tree as the rule");
</script>