mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-03 09:53:05 +00:00
LibHTML: Add a StyledNode class.
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.
This commit is contained in:
10
LibHTML/CSS/StyledNode.cpp
Normal file
10
LibHTML/CSS/StyledNode.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <LibHTML/CSS/StyledNode.h>
|
||||
|
||||
StyledNode::StyledNode(const Node* node)
|
||||
: m_node(node)
|
||||
{
|
||||
}
|
||||
|
||||
StyledNode::~StyledNode()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user