mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 16:10:20 +00:00
LibWeb: Set grid-auto-columns/rows in NodeWithStyle::apply_style()
This commit is contained in:
parent
6ab660b62f
commit
4fc4bd6c3f
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/4fc4bd6c3f Pull-request: https://github.com/SerenityOS/serenity/pull/18975
1 changed files with 2 additions and 0 deletions
|
@ -643,6 +643,8 @@ void NodeWithStyle::apply_style(const CSS::StyleProperties& computed_style)
|
|||
do_border_style(computed_values.border_bottom(), CSS::PropertyID::BorderBottomWidth, CSS::PropertyID::BorderBottomColor, CSS::PropertyID::BorderBottomStyle);
|
||||
|
||||
computed_values.set_content(computed_style.content());
|
||||
computed_values.set_grid_auto_columns(computed_style.grid_auto_columns());
|
||||
computed_values.set_grid_auto_rows(computed_style.grid_auto_rows());
|
||||
computed_values.set_grid_template_columns(computed_style.grid_template_columns());
|
||||
computed_values.set_grid_template_rows(computed_style.grid_template_rows());
|
||||
computed_values.set_grid_column_end(computed_style.grid_column_end());
|
||||
|
|
Loading…
Reference in a new issue