mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 05:47:34 +00:00
LibHTML: Implement rendering
This commit is contained in:
parent
93003bfda1
commit
235dee8c42
7 changed files with 62 additions and 0 deletions
|
@ -26,3 +26,11 @@ const LayoutBlock* LayoutNode::containing_block() const
|
|||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void LayoutNode::render(RenderingContext& context)
|
||||
{
|
||||
// TODO: render our background and border
|
||||
for_each_child([&](auto& child) {
|
||||
child.render(context);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue