mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 11:14:58 +00:00
12 lines
205 B
C++
12 lines
205 B
C++
#include <LibHTML/DOM/Text.h>
|
|
#include <LibHTML/Layout/LayoutText.h>
|
|
|
|
Text::Text(Document& document, const String& data)
|
|
: Node(document, NodeType::TEXT_NODE)
|
|
, m_data(data)
|
|
{
|
|
}
|
|
|
|
Text::~Text()
|
|
{
|
|
}
|