LibHTML: Create some subdirectories.

This commit is contained in:
Andreas Kling 2019-06-15 23:41:15 +02:00
commit 1f51c2b7da
Notes: sideshowbarker 2024-07-19 13:35:25 +09:00
25 changed files with 49 additions and 50 deletions

View file

@ -1,17 +0,0 @@
#include <LibHTML/Text.h>
#include <LibHTML/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));
}