summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/target-text-002.html
blob: f93efaa548c477234c99093ccb5c3a77807818aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: ::target-text color rendering - match across elements</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo/#selectordef-target-text">
<link rel="match" href="target-text-lime-green-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  .ahem { font-family: Ahem; }
  ::target-text {
    color: lime;
    background-color: green;
  }
</style>
<p>PASS if there are two segments of lime squares with a green square between below.</p>
<p class="ahem">ma<span>tch </span>me</p>
<script>
  window.location.hash = "#:~:text=match%20me";
</script>