blob: 0ee37b1e8aadfed3945bfecc6dbe77e783def5a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: Reference ::target-text text-decoration-color</title>
<style>
div {
text-decoration: solid underline magenta;
color: initial;
background: transparent;
}
</style>
<p>The test passes if the following line has a magenta underline.</p>
<div>Example</div>
|