1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:37:36 +00:00

LibWeb: Rename PaintableBox::clip_rect()

This commit is contained in:
Aliaksandr Kalenik 2023-03-19 20:28:30 +03:00 committed by Andreas Kling
parent 7ddacef3b5
commit dcc4868a3c
2 changed files with 4 additions and 4 deletions

View file

@ -98,7 +98,7 @@ public:
return m_overflow_data->scrollable_overflow_rect;
}
Optional<CSSPixelRect> clip_rect() const;
Optional<CSSPixelRect> calculate_overflow_clipped_rect() const;
void set_overflow_data(Optional<OverflowData> data) { m_overflow_data = move(data); }
void set_containing_line_box_fragment(Optional<Layout::LineBoxFragmentCoordinate>);