mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
4270ede7c4
We no longer access Bindings::FooWrapper anywhere for a Foo platform object, so these can be removed :^)
31 lines
578 B
C++
31 lines
578 B
C++
/*
|
|
* 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 {
|
|
WEB_PLATFORM_OBJECT(Text, CDATASection);
|
|
|
|
public:
|
|
virtual ~CDATASection() override;
|
|
|
|
// ^Node
|
|
virtual FlyString node_name() const override { return "#cdata-section"; }
|
|
|
|
private:
|
|
CDATASection(Document&, String const&);
|
|
};
|
|
|
|
template<>
|
|
inline bool Node::fast_is<CDATASection>() const { return is_cdata_section(); }
|
|
|
|
}
|