1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:27:35 +00:00

LibWeb: Ignore flex container size constraints during intrinsic sizing

Properties like min-width, max-width, etc, should be ignored while we're
trying to determine the intrinsic size of a flex container.

This fixes an infinite recursion when using an intrinsic size keyword as
the max-width of a flex column container.

Note that this behavior is marked as AD-HOC in code comments because
specs don't tell us how to achieve intrinsic sizing.

We can now load product pages on the Twinings site, such as
https://twinings.co.uk/products/earl-grey-100-tea-bags :^)
This commit is contained in:
Andreas Kling 2023-08-01 18:32:08 +02:00
parent f6e4caf197
commit 15440b156f
3 changed files with 23 additions and 6 deletions

View file

@ -0,0 +1,7 @@
<!doctype html><style>
body {
display: flex;
flex-direction: column;
max-width: max-content;
}
</style>