Files
ladybird/Tests/LibWeb/Layout/input/grid/account-for-box-sizing-in-max-content-contribution.html
Aliaksandr Kalenik 70b5496ecd LibWeb: Account for box-sizing in max-content contribution [GFC]
Use `calculate_inner_height()` and `calculate_inner_width()`, which
account for box-sizing, to resolve the item's size in max-content
contribution calculations.
2025-11-14 16:24:30 +01:00

12 lines
267 B
HTML

<!doctype html><style>
.container {
display: grid;
background: red;
}
.item {
box-sizing: border-box;
height: 50px;
padding: 10px;
background: lime;
}
</style><div class="container"><div class="item">There should be no red visible.</div></div>