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

LibWeb: Allow having auto GridTrackPlacements

For grid-row-start, grid-column-end and similar values it is possible to
have auto values (nothing was specified, for example).
This commit is contained in:
martinfalisse 2022-09-07 15:03:23 +02:00 committed by Andreas Kling
parent 0613972f0c
commit ad221164d5
2 changed files with 14 additions and 2 deletions

View file

@ -21,6 +21,7 @@ GridTrackPlacement::GridTrackPlacement(int position)
}
GridTrackPlacement::GridTrackPlacement()
: m_is_auto(true)
{
}