highlight-custom-properties-dynamic-001-ref.html (409B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Pseudo Test: Dynamic Custom Properties for Highlights</title> 4 <link rel="author" title="Stephen Chenney" href="mailto:schenney@igalia.com"> 5 <head> 6 <style> 7 ::selection { 8 background-color: green; 9 } 10 </style> 11 </head> 12 <body>Green background when selected</body> 13 <script> 14 window.getSelection().selectAllChildren(document.body); 15 </script> 16 </html>