1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 05:17:34 +00:00

LibHTML: Fix missing backgrounds an borders after LayoutBox refactoring

The render() implementation in both LayoutBlock and LayoutBox need to
be calling the immediate parent class. :^)
This commit is contained in:
Andreas Kling 2019-10-15 19:12:12 +02:00
parent 4814253589
commit 110b2d52f2
2 changed files with 6 additions and 1 deletions

View file

@ -9,6 +9,9 @@
void LayoutBox::render(RenderingContext& context)
{
if (!is_visible())
return;
#ifdef DRAW_BOXES_AROUND_LAYOUT_NODES
context.painter().draw_rect(m_rect, Color::Blue);
#endif
@ -60,6 +63,8 @@ void LayoutBox::render(RenderingContext& context)
context.painter().draw_line(padded_rect.bottom_left(), padded_rect.top_left(), border_color, border_width);
}
}
LayoutNodeWithStyleAndBoxModelMetrics::render(context);
}
HitTestResult LayoutBox::hit_test(const Point& position) const