Text.cpp 175 B

123456789101112
  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. }