Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-overflow/scroll-markers/scroll-buttons-container-query-crash.html
<!DOCTYPE html> <title>CSS Overflow Test: ::scroll-button() depending on size container query crash</title> <link rel="help" href="https://crbug.com/375973472"> <style> #scroller { overflow: hidden; container-type: size; } #scroller::scroll-button(right) { content: ">"; } @container (width) { #scroller::scroll-button(right) { display: block; } } </style> <div id="scroller"></div>