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
commit 6e1f6bd684
Notes: sideshowbarker 2024-07-18 04:38:32 +09:00
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;
};