12345678910111213141516171819202122232425262728 |
- /*
- * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/RefCounted.h>
- #include <LibWeb/DOM/Text.h>
- namespace Web::DOM {
- class CDATASection final : public Text {
- public:
- using WrapperType = Bindings::CDATASectionWrapper;
- CDATASection(Document&, String const&);
- virtual ~CDATASection() override;
- // ^Node
- virtual FlyString node_name() const override { return "#cdata-section"; }
- };
- template<>
- inline bool Node::fast_is<CDATASection>() const { return is_cdata_section(); }
- }
|