selection-001.html (343B)
1 <!doctype html> 2 <title>::selection should use native colors in high contrast mode</title> 3 <style> 4 ::selection { 5 background: purple; 6 color: blue; 7 } 8 </style> 9 <p> 10 Some selected text 11 </p> 12 <script> 13 getSelection().removeAllRanges(); 14 let r = document.createRange(); 15 r.selectNode(document.documentElement); 16 getSelection().addRange(r); 17 </script>