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

LibWeb: Add transform: translateY() support

This is very naive.
This commit is contained in:
Tobias Christiansen 2021-09-18 18:42:27 +02:00 committed by Andreas Kling
parent 9ebfafafbe
commit 6e1f6bd684
2 changed files with 38 additions and 0 deletions

View file

@ -48,6 +48,8 @@ private:
void layout_floating_child(Box&, Box& containing_block);
void apply_transformations_to_children(Box&);
Vector<Box*> m_left_floating_boxes;
Vector<Box*> m_right_floating_boxes;
};