mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:48:14 +00:00
LibWeb: Add CDATASection
Not used for anything currently other than exposing it on the Window object. This allows Web Components Polyfills to patch its prototype.
This commit is contained in:
parent
2916b3bebf
commit
1ceba560f4
10 changed files with 68 additions and 1 deletions
28
Userland/Libraries/LibWeb/DOM/CDATASection.h
Normal file
28
Userland/Libraries/LibWeb/DOM/CDATASection.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* 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(); }
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue