mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 05:52:53 +00:00
Add classes ExplicitTrackSizing and MetaGridTrackSize which will allow for managing properties like auto-fill and minmax. In the following CSS example there are 3 classes that will be used: grid-template-column: repeat(auto-fill, minmax(50px, 1fr) 75px); ExplicitTrackSizing - will contain the entire value. e.g. repeat(auto-fill, minmax(50px, 1fr) 75px) With a flag if it's a repeat, as well as references to the MetaGridTrackSizes which is the next step down. MetaGridTrackSize: Contain the individual grid track sizes. Here there are two: minmax(50px, 1fr) as well as 75px. This way can keep track if it's a minmax function or not, and the references to both GridTrackSizes in the case it is, or in just the one if it is not. GridTrackSize: Is the most basic element, in this case there are three in total; two of which are held by the first MetaGridTrackSize, and the third is held by the second MetaGridTrackSize. Examples: 50px, 1fr and 75px. |
||
---|---|---|
.. | ||
AvailableSpace.cpp | ||
AvailableSpace.h | ||
BlockContainer.cpp | ||
BlockContainer.h | ||
BlockFormattingContext.cpp | ||
BlockFormattingContext.h | ||
Box.cpp | ||
Box.h | ||
BoxModelMetrics.cpp | ||
BoxModelMetrics.h | ||
BreakNode.cpp | ||
BreakNode.h | ||
ButtonBox.cpp | ||
ButtonBox.h | ||
CanvasBox.cpp | ||
CanvasBox.h | ||
CheckBox.cpp | ||
CheckBox.h | ||
FlexFormattingContext.cpp | ||
FlexFormattingContext.h | ||
FormAssociatedLabelableNode.h | ||
FormattingContext.cpp | ||
FormattingContext.h | ||
FrameBox.cpp | ||
FrameBox.h | ||
GridFormattingContext.cpp | ||
GridFormattingContext.h | ||
ImageBox.cpp | ||
ImageBox.h | ||
InitialContainingBlock.cpp | ||
InitialContainingBlock.h | ||
InlineFormattingContext.cpp | ||
InlineFormattingContext.h | ||
InlineLevelIterator.cpp | ||
InlineLevelIterator.h | ||
InlineNode.cpp | ||
InlineNode.h | ||
Label.cpp | ||
Label.h | ||
LabelableNode.cpp | ||
LabelableNode.h | ||
LayoutPosition.cpp | ||
LayoutPosition.h | ||
LayoutState.cpp | ||
LayoutState.h | ||
LineBox.cpp | ||
LineBox.h | ||
LineBoxFragment.cpp | ||
LineBoxFragment.h | ||
LineBuilder.cpp | ||
LineBuilder.h | ||
ListItemBox.cpp | ||
ListItemBox.h | ||
ListItemMarkerBox.cpp | ||
ListItemMarkerBox.h | ||
Node.cpp | ||
Node.h | ||
Progress.cpp | ||
Progress.h | ||
RadioButton.cpp | ||
RadioButton.h | ||
ReplacedBox.cpp | ||
ReplacedBox.h | ||
SVGBox.cpp | ||
SVGBox.h | ||
SVGFormattingContext.cpp | ||
SVGFormattingContext.h | ||
SVGGeometryBox.cpp | ||
SVGGeometryBox.h | ||
SVGGraphicsBox.cpp | ||
SVGGraphicsBox.h | ||
SVGSVGBox.cpp | ||
SVGSVGBox.h | ||
TableBox.cpp | ||
TableBox.h | ||
TableCellBox.cpp | ||
TableCellBox.h | ||
TableFormattingContext.cpp | ||
TableFormattingContext.h | ||
TableRowBox.cpp | ||
TableRowBox.h | ||
TableRowGroupBox.cpp | ||
TableRowGroupBox.h | ||
TextNode.cpp | ||
TextNode.h | ||
TreeBuilder.cpp | ||
TreeBuilder.h |