target-text-008-ref.html (433B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8" /> 4 <title>CSS Pseudo-Elements Test: Reference</title> 5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> 6 <style> 7 a::target-text { 8 color: lime; 9 background: green; 10 } 11 </style> 12 13 <p>Test passes if the link below has lime color and green background.</p> 14 <a href="">visited</a> 15 16 <script> 17 window.location.hash = "#:~:text=visited"; 18 </script>