Comment.cpp 219 B

1234567891011
  1. #include <LibHTML/DOM/Comment.h>
  2. #include <LibHTML/Layout/LayoutText.h>
  3. Comment::Comment(Document& document, const String& data)
  4. : CharacterData(document, NodeType::COMMENT_NODE, data)
  5. {
  6. }
  7. Comment::~Comment()
  8. {
  9. }