Text.cpp 271 B

1234567891011121314151617
  1. #include <LibHTML/DOM/Text.h>
  2. #include <LibHTML/Layout/LayoutText.h>
  3. Text::Text(const String& data)
  4. : Node(NodeType::TEXT_NODE)
  5. , m_data(data)
  6. {
  7. }
  8. Text::~Text()
  9. {
  10. }
  11. RetainPtr<LayoutNode> Text::create_layout_node()
  12. {
  13. return adopt(*new LayoutText(*this));
  14. }