1234567891011121314151617181920 |
- /*
- * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <LibWeb/DOM/CDATASection.h>
- namespace Web::DOM {
- CDATASection::CDATASection(Document& document, String const& data)
- : Text(document, NodeType::CDATA_SECTION_NODE, data)
- {
- }
- CDATASection::~CDATASection()
- {
- }
- }
|