mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
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:
committed by
Andreas Kling
parent
2fa124e8d9
commit
493c6cf0fd
@@ -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({});
|
||||
|
||||
Reference in New Issue
Block a user