mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 21:00:06 +00:00
14 lines
134 B
C++
14 lines
134 B
C++
#include <LibHTML/Text.h>
|
|
|
|
Text::Text(const String& data)
|
|
: Node(NodeType::TEXT_NODE)
|
|
, m_data(data)
|
|
{
|
|
}
|
|
|
|
Text::~Text()
|
|
{
|
|
}
|
|
|
|
|