Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-pseudo/target-text-006.html
<!doctype html> <meta charset="utf-8"> <title>CSS Pseudo-Elements Test: ::target-text color rendering - text rendered once</title> <link rel="help" href="https://drafts.csswg.org/css-pseudo/#selectordef-target-text"> <link rel="match" href="target-text-two-words-ref.html"> <style> p.white { color: white; } p::target-text { color: black; background-color: orange; } </style> <p>PASS if the text below is rendered black on an orange background.</p> <p class="white">match me</p> <script> window.location.hash = "#:~:text=match%20me"; </script>
/css/css-pseudo/target-text-two-words-ref.html
<!doctype html> <title>CSS Test Reference</title> <p>PASS if the text below is rendered black on an orange background.</p> <p><span style="color:black;background:orange">match me<span></p>