mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 16:05:06 +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.
10 lines
132 B
C++
10 lines
132 B
C++
#include <LibHTML/CSS/StyledNode.h>
|
|
|
|
StyledNode::StyledNode(const Node* node)
|
|
: m_node(node)
|
|
{
|
|
}
|
|
|
|
StyledNode::~StyledNode()
|
|
{
|
|
}
|