17 lines
271 B
C++
17 lines
271 B
C++
#include <LibHTML/DOM/Text.h>
|
|
#include <LibHTML/Layout/LayoutText.h>
|
|
|
|
Text::Text(const String& data)
|
|
: Node(NodeType::TEXT_NODE)
|
|
, m_data(data)
|
|
{
|
|
}
|
|
|
|
Text::~Text()
|
|
{
|
|
}
|
|
|
|
RetainPtr<LayoutNode> Text::create_layout_node()
|
|
{
|
|
return adopt(*new LayoutText(*this));
|
|
}
|