Files
ladybird/Tests/LibWeb/Ref/expected/sticky-overflow-scroll-ref.html
Tim Ledbetter 89cbe44c71 LibWeb: Apply scroll offset to children of sticky elements with overflow
Previously, sticky elements were excluded from propagating  their
scroll frame to descendants' accumulated visual context. This meant
that when a sticky element also had scrollable overflow, the scroll
offset was never visually applied to its children during painting.
2026-01-31 18:22:30 +01:00

11 lines
174 B
HTML

<!DOCTYPE html>
<style>
body { margin: 0; }
.green {
width: 100px;
height: 100px;
background: green;
}
</style>
<div class="green"></div>