LibWeb: Parse flexible length values for GridTrackSizes

Fix a bug as well as implement new functionality by parsing flexible
length values for GridTrackSizes.
This commit is contained in:
martinfalisse 2022-09-07 14:57:47 +02:00 committed by Andreas Kling
parent 2fa124e8d9
commit 493c6cf0fd
Notes: sideshowbarker 2024-07-17 23:07:41 +09:00

View File

@ -5329,6 +5329,15 @@ RefPtr<StyleValue> Parser::parse_grid_track_sizes(Vector<ComponentValue> const&
params.append(Length::make_auto());
continue;
}
if (component_value.token().type() == Token::Type::Dimension) {
float numeric_value = component_value.token().dimension_value();
auto unit_string = component_value.token().dimension_unit();
if (unit_string.equals_ignoring_case("fr"sv) && numeric_value) {
params.append(GridTrackSize(numeric_value));
continue;
}
}
auto dimension = parse_dimension(component_value);
if (!dimension.has_value())
return GridTrackSizeStyleValue::create({});