mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
I'd like to try doing DOM -> style tree -> layout tree. I'm not exactly sure how it's gonna work, but we'll figure it out as we go.
11 lines
132 B
C++
11 lines
132 B
C++
#include <LibHTML/CSS/StyledNode.h>
|
|
|
|
StyledNode::StyledNode(const Node* node)
|
|
: m_node(node)
|
|
{
|
|
}
|
|
|
|
StyledNode::~StyledNode()
|
|
{
|
|
}
|