mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 19:16:02 +00:00
LibWeb: Parse grid-template-columns and grid-template-rows
Add functionality to begin parsing grid-template-columns and grid-template-rows. There are still things to be added, like parsing functions, but I would say a couple of the major points are already adressed like length, percentage, and flexible-length.
This commit is contained in:
parent
c40dd9ee78
commit
92a00648b1
Notes:
sideshowbarker
2024-07-17 07:45:42 +09:00
Author: https://github.com/martinfalisse
Commit: 92a00648b1
Pull-request: https://github.com/SerenityOS/serenity/pull/14996
8 changed files with 87 additions and 0 deletions
|
@ -81,6 +81,8 @@ public:
|
|||
Optional<CSS::PointerEvents> pointer_events() const;
|
||||
Variant<CSS::VerticalAlign, CSS::LengthPercentage> vertical_align() const;
|
||||
Optional<CSS::FontVariant> font_variant() const;
|
||||
Vector<CSS::GridTrackSize> grid_template_columns() const;
|
||||
Vector<CSS::GridTrackSize> grid_template_rows() const;
|
||||
|
||||
Vector<CSS::Transformation> transformations() const;
|
||||
CSS::TransformOrigin transform_origin() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue