highlight-cascade-004-ref.html (416B)
1 <!DOCTYPE html> 2 <title>Initial custom property values in div::selection rule</title> 3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#highlight-cascade"> 4 <script src="../support/selections.js"></script> 5 <style> 6 div::selection { 7 background-color: green; 8 } 9 </style> 10 <div>PASS if background-color is green when selected</div> 11 <script> 12 selectNodeContents(document.querySelector("div")); 13 </script>