
There's no need to pass the StyleResolver to this function. Nodes that need it can just get it from the document.
16 lines
322 B
C++
16 lines
322 B
C++
#include <LibHTML/DOM/Text.h>
|
|
#include <LibHTML/Layout/LayoutText.h>
|
|
|
|
Text::Text(Document& document, const String& data)
|
|
: CharacterData(document, NodeType::TEXT_NODE, data)
|
|
{
|
|
}
|
|
|
|
Text::~Text()
|
|
{
|
|
}
|
|
|
|
RefPtr<LayoutNode> Text::create_layout_node(const StyleProperties*) const
|
|
{
|
|
return adopt(*new LayoutText(*this));
|
|
}
|