1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/root-element-layout-parent-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

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>