1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

LibWeb: Add 'object-fit' property

This patch adds support for the 'object-fit' CSS property. :^)
This commit is contained in:
Tobias Christiansen 2023-08-01 20:06:50 +02:00 committed by Sam Atkins
parent 86ad896f35
commit 5fc6bff582
6 changed files with 24 additions and 0 deletions

View file

@ -110,6 +110,7 @@ public:
Optional<CSS::BorderCollapse> border_collapse() const;
Vector<Vector<String>> grid_template_areas() const;
String grid_area() const;
Optional<CSS::ObjectFit> object_fit() const;
Vector<CSS::Transformation> transformations() const;
CSS::TransformOrigin transform_origin() const;