trisquel-icecat/icecat/testing/web-platform/tests/css/css-overflow/root-element-layout-parent-crash.html
2025-10-06 02:35:48 -06:00

20 lines
560 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow Test: root element with ::scroll-marker-group and ::scroll-buttons() doesn't crasah</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-buttons">
<link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group">
<style>
html {
overflow: auto;
scroll-marker-group: before;
}
html::scroll-marker-group {
width: 100px;
height: 100px;
}
html::scroll-button(left) {
content: "";
width: 100px;
height: 100px;
}
</style>