LibWeb: Treat min{max}-height as none if available is intrinsic [GFC]

Fixes infinite recursion in following cases:
- max-height: fit-content
- max-height: min-content
- max-height: max-content
This commit is contained in:
Aliaksandr Kalenik 2024-12-03 20:09:23 +01:00 committed by Andreas Kling
commit bfdf52701f
Notes: github-actions[bot] 2024-12-03 22:10:55 +00:00
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<!doctype html><style>
body {
display: grid;
max-height: fit-content;
}
</style>hello