1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

LibWeb: Enforce min/max height constraints on abspos replaced boxes

Fixes #18658
This commit is contained in:
Andreas Kling 2023-05-06 20:51:56 +02:00
parent 36ff6187f6
commit fc3c3aef22
3 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html><html><head><style>
#zero-dimensions-but-min-percentages {
width: 0;
height: 0;
min-width: 100%;
min-height: 100%;
position: absolute;
}
</style><body><img id="zero-dimensions-but-min-percentages">