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

LibWeb: Support max-content for width, min-width and max-width

We're gonna need to handle this in many more places, this patch only
adds it to calculate_inner_width().
This commit is contained in:
Andreas Kling 2023-05-28 18:18:34 +02:00
parent 358d94b57a
commit 97c510329c
4 changed files with 53 additions and 1 deletions

View file

@ -1338,6 +1338,7 @@
],
"valid-identifiers": [
"fit-content",
"max-content",
"none"
],
"quirks": [
@ -1374,6 +1375,7 @@
"valid-identifiers": [
"auto",
"fit-content",
"max-content",
"none"
],
"quirks": [
@ -1773,7 +1775,8 @@
],
"valid-identifiers": [
"auto",
"fit-content"
"fit-content",
"max-content"
],
"quirks": [
"unitless-length"