scroll-marker-group-001.html (527B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test: ::scroll-marker-group box creation</title> 4 <link rel="match" href="scroll-marker-group-001-ref.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group-pseudo"> 6 <style> 7 div { 8 overflow: auto; 9 scroll-marker-group: before; 10 } 11 12 div::scroll-marker-group { 13 background: green; 14 display: flex; 15 height: 100px; 16 width: 100px; 17 } 18 </style> 19 <p>Test passes if there is a <strong>filled green rectangle</strong>. 20 <div></div>