LibWeb: Fix incomplete plumbing for individual rotate CSS property

This commit is contained in:
Andreas Kling 2024-11-22 16:11:33 +01:00 committed by Andreas Kling
commit 6836d4edb1
Notes: github-actions[bot] 2024-11-22 19:07:55 +00:00
5 changed files with 27 additions and 5 deletions

View file

@ -796,7 +796,7 @@ public:
void set_justify_items(CSS::JustifyItems value) { m_noninherited.justify_items = value; }
void set_justify_self(CSS::JustifySelf value) { m_noninherited.justify_self = value; }
void set_box_shadow(Vector<ShadowData>&& value) { m_noninherited.box_shadow = move(value); }
void set_rotate(CSS::Transformation value) { m_noninherited.rotate = value; }
void set_rotate(CSS::Transformation value) { m_noninherited.rotate = move(value); }
void set_transformations(Vector<CSS::Transformation> value) { m_noninherited.transformations = move(value); }
void set_transform_box(CSS::TransformBox value) { m_noninherited.transform_box = value; }
void set_transform_origin(CSS::TransformOrigin value) { m_noninherited.transform_origin = value; }