diff --git a/Userland/Libraries/LibWeb/Layout/LineBox.h b/Userland/Libraries/LibWeb/Layout/LineBox.h index 465f1eeeb8bfad1c16a5c75ad0a5c3d3f34846d6..6ea03a28c150a2b8cf13fc7d65f2929dc228a5fc 100644 --- a/Userland/Libraries/LibWeb/Layout/LineBox.h +++ b/Userland/Libraries/LibWeb/Layout/LineBox.h @@ -32,16 +32,11 @@ public: AvailableSize original_available_width() const { return m_original_available_width; } - CSSPixelRect const& absolute_rect() const { return m_absolute_rect; } - void set_absolute_rect(CSSPixelRect const& rect) { m_absolute_rect = rect; } - private: friend class BlockContainer; friend class InlineFormattingContext; friend class LineBuilder; - CSSPixelRect m_absolute_rect; - Vector m_fragments; CSSPixels m_width { 0 }; CSSPixels m_height { 0 };