Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-shadow/reslot-text-inheritance.html
<!doctype html> <html class="reftest-wait"> <title>CSS Test: Re-slotted text node inheritance</title> <link rel="help" href="https://drafts.csswg.org/css-shadow/#slotted-pseudo"> <link rel="match" href="reference/green-text.html"> <script src="/common/reftest-wait.js"></script> <p id="host">This text should be green.</p> <script> const root = host.attachShadow({mode:"open"}); root.innerHTML = ` <slot style="color:green" name="no-match"></slot> <slot style="color:red"></slot> `; host.offsetTop; root.querySelector("slot").removeAttribute("name"); takeScreenshot(); </script>
/css/css-shadow/reference/green-text.html
<!doctype html> <title>CSS Test: Reference</title> <p style="color:green">This text should be green.</p>