mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +00:00
LibWeb: Add support for parsing grid-auto-flow
CSS property
Co-Authored-By: Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
This commit is contained in:
parent
1a5533e528
commit
703c2bb06e
13 changed files with 168 additions and 0 deletions
|
@ -724,6 +724,7 @@ void NodeWithStyle::apply_style(const CSS::StyleProperties& computed_style)
|
|||
computed_values.set_grid_row_end(computed_style.grid_row_end());
|
||||
computed_values.set_grid_row_start(computed_style.grid_row_start());
|
||||
computed_values.set_grid_template_areas(computed_style.grid_template_areas());
|
||||
computed_values.set_grid_auto_flow(computed_style.grid_auto_flow());
|
||||
|
||||
auto fill = computed_style.property(CSS::PropertyID::Fill);
|
||||
if (fill->has_color())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue