1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:58:10 +00:00

LibWeb: Rename CombinedBorderRadiusSV -> BorderRadiusShorthandSV

This commit is contained in:
Sam Atkins 2022-04-18 17:02:39 +01:00 committed by Andreas Kling
parent e1cd36559d
commit d9afc2d6f2
3 changed files with 34 additions and 34 deletions

View file

@ -281,7 +281,7 @@ RefPtr<StyleValue> ResolvedCSSStyleDeclaration::style_value_for_property(Layout:
bottom_right_radius = maybe_bottom_right_radius.value().value->as_border_radius();
}
return CombinedBorderRadiusStyleValue::create(top_left_radius.release_nonnull(), top_right_radius.release_nonnull(), bottom_right_radius.release_nonnull(), bottom_left_radius.release_nonnull());
return BorderRadiusShorthandStyleValue::create(top_left_radius.release_nonnull(), top_right_radius.release_nonnull(), bottom_right_radius.release_nonnull(), bottom_left_radius.release_nonnull());
}
// FIXME: The two radius components are not yet stored, as we currently don't actually render them.
case CSS::PropertyID::BorderBottomLeftRadius: