CDATASection.cpp 335 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/DOM/CDATASection.h>
  7. namespace Web::DOM {
  8. CDATASection::CDATASection(Document& document, String const& data)
  9. : Text(document, NodeType::CDATA_SECTION_NODE, data)
  10. {
  11. }
  12. CDATASection::~CDATASection()
  13. {
  14. }
  15. }