LibHTML: Implement basic support for background-color

This commit is contained in:
Andreas Kling 2019-09-29 18:05:37 +02:00
commit 37a37accd4
Notes: sideshowbarker 2024-07-19 11:53:13 +09:00
2 changed files with 9 additions and 1 deletions

View file

@ -42,7 +42,12 @@ void LayoutNode::render(RenderingContext& context)
if (!is_anonymous() && node() == document().hovered_node())
context.painter().draw_rect(m_rect, Color::Red);
#endif
// TODO: render our background and border
auto bgcolor = style_properties().property("background-color");
if (bgcolor.has_value() && bgcolor.value()->is_color())
context.painter().fill_rect(rect(), bgcolor.value()->to_color());
// TODO: render our border
for_each_child([&](auto& child) {
child.render(context);
});