LibWeb/CSS: Remove unused StyleProperties::grid_area()

This does not appear to be correct; the `grid-area` property's value is
quite complicated, and not just a string.
This commit is contained in:
Sam Atkins 2024-07-17 12:37:08 +01:00 committed by Tim Ledbetter
commit d2f04b9f04
Notes: sideshowbarker 2024-07-18 02:44:51 +09:00
2 changed files with 0 additions and 7 deletions

View file

@ -997,12 +997,6 @@ Vector<Vector<String>> StyleProperties::grid_template_areas() const
return value->as_grid_template_area().grid_template_area();
}
String StyleProperties::grid_area() const
{
auto value = property(CSS::PropertyID::GridArea);
return value->as_string().string_value();
}
Optional<CSS::ObjectFit> StyleProperties::object_fit() const
{
auto value = property(CSS::PropertyID::ObjectFit);