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

LibWeb: Set box-shadow for inline paintables in LayoutState::commit()

This is part of the efforts towards making the paintable tree
independent of the layout tree.
This commit is contained in:
Aliaksandr Kalenik 2024-01-13 15:32:31 +01:00 committed by Alexander Kalenik
parent bfa4143e70
commit 5ed936289a
3 changed files with 28 additions and 27 deletions

View file

@ -28,11 +28,16 @@ public:
void mark_contained_fragments();
void set_box_shadow_data(Vector<ShadowData>&& box_shadow_data) { m_box_shadow_data = move(box_shadow_data); }
Vector<ShadowData> const& box_shadow_data() const { return m_box_shadow_data; }
private:
InlinePaintable(Layout::InlineNode const&);
template<typename Callback>
void for_each_fragment(Callback) const;
Vector<ShadowData> m_box_shadow_data;
};
}