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

LibWeb: Fix width calculation for floating replaced elements

The path for floating, replaced elements must not fall through to the
path taken for floating, non-replaced elements. The former works like
inline replaced elements, while the latter uses a completely different
algorithm which doesn't account for intrinsic ratio. Falling through
overrides the correct value computed by the former.

Fixes #19061.
This commit is contained in:
Andi Gallo 2023-05-26 13:47:40 +00:00 committed by Andreas Kling
parent 7cc20f4cb5
commit 1e526af430
3 changed files with 11 additions and 5 deletions

View file

@ -8,7 +8,7 @@
}
.foo div {
height: 600px;
height: 400px;
}
.foo div img {