Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/target-text-006.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: ::target-text color rendering - text rendered once</title>
<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>