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

LibWeb: Draw elements with opacity in a separate stacking context

This commit is contained in:
Egor Ananyin 2021-07-23 13:19:16 +03:00 committed by Ali Mohammad Pur
parent 0e6ba6e1d3
commit f567414f65
3 changed files with 27 additions and 1 deletions

View file

@ -35,6 +35,8 @@ private:
Box& m_box;
StackingContext* const m_parent { nullptr };
Vector<StackingContext*> m_children;
void paint_internal(PaintContext&);
};
}