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

LibWeb: Remove contained_by_inline_node flag in PaintableFragment

No longer used after we made inline paintables own their fragments.
This commit is contained in:
Aliaksandr Kalenik 2024-01-31 05:31:21 +01:00 committed by Andreas Kling
parent 9dddd6b028
commit dc47d01fdc
2 changed files with 0 additions and 7 deletions

View file

@ -42,9 +42,6 @@ public:
CSSPixelRect selection_rect(Gfx::Font const&) const;
bool contained_by_inline_node() const { return m_contained_by_inline_node; }
void set_contained_by_inline_node() { m_contained_by_inline_node = true; }
CSSPixels width() const { return m_size.width(); }
CSSPixels height() const { return m_size.height(); }