1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/scroll-buttons-container-query-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
421 B
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>