mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb: Fix incomplete plumbing for individual rotate
CSS property
This commit is contained in:
parent
d6f7fccf49
commit
6836d4edb1
Notes:
github-actions[bot]
2024-11-22 19:07:55 +00:00
Author: https://github.com/awesomekling
Commit: 6836d4edb1
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2506
Reviewed-by: https://github.com/shannonbooth
5 changed files with 27 additions and 5 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue