mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 15:07:45 +00:00
LibWeb: Support min-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:
parent
97c510329c
commit
af004ff0ef
4 changed files with 62 additions and 1 deletions
|
@ -1339,6 +1339,7 @@
|
|||
"valid-identifiers": [
|
||||
"fit-content",
|
||||
"max-content",
|
||||
"min-content",
|
||||
"none"
|
||||
],
|
||||
"quirks": [
|
||||
|
@ -1376,6 +1377,7 @@
|
|||
"auto",
|
||||
"fit-content",
|
||||
"max-content",
|
||||
"min-content",
|
||||
"none"
|
||||
],
|
||||
"quirks": [
|
||||
|
@ -1776,7 +1778,8 @@
|
|||
"valid-identifiers": [
|
||||
"auto",
|
||||
"fit-content",
|
||||
"max-content"
|
||||
"max-content",
|
||||
"min-content"
|
||||
],
|
||||
"quirks": [
|
||||
"unitless-length"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue