root-element-layout-parent-crash.html (560B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow Test: root element with ::scroll-marker-group and ::scroll-buttons() doesn't crasah</title> 4 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-buttons"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group"> 6 <style> 7 html { 8 overflow: auto; 9 scroll-marker-group: before; 10 } 11 html::scroll-marker-group { 12 width: 100px; 13 height: 100px; 14 } 15 html::scroll-button(left) { 16 content: ""; 17 width: 100px; 18 height: 100px; 19 } 20 </style>