Files
ladybird/Tests/LibWeb/Ref/expected/position-absolute-outside-sticky-bounds-ref.html
Aliaksandr Kalenik affad6c85d Tests: Add ref tests for nested sticky positioning
Increases sticky positioning test coverage.
2026-01-15 19:50:53 +01:00

53 lines
1000 B
HTML

<!DOCTYPE html>
<style>
* { scrollbar-width: none; }
.scrollable {
width: 400px;
height: 200px;
overflow: hidden;
border: 5px solid red;
position: relative;
}
.bg {
background-color: orange;
width: 100%;
height: 100%;
}
.sticky-simulated {
position: absolute;
top: 30px;
width: 200px;
height: 60px;
background: #3498db;
}
.absolute-above {
position: absolute;
top: -20px;
left: 20px;
width: 80px;
height: 30px;
background: #e74c3c;
}
.absolute-below {
position: absolute;
bottom: -25px;
right: 20px;
width: 80px;
height: 30px;
background: #27ae60;
}
</style>
<div class="scrollable">
<div class="sticky-simulated">
<div class="absolute-above"></div>
<div class="absolute-below"></div>
</div>
<div class="bg"></div>
</div>