1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +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:
Luke Wilde 2022-06-27 21:20:59 +01:00 committed by Linus Groh
parent 2916b3bebf
commit 1ceba560f4
10 changed files with 68 additions and 1 deletions

View file

@ -72,6 +72,7 @@ public:
bool is_parent_node() const { return is_element() || is_document() || is_document_fragment(); }
bool is_slottable() const { return is_element() || is_text(); }
bool is_attribute() const { return type() == NodeType::ATTRIBUTE_NODE; }
bool is_cdata_section() const { return type() == NodeType::CDATA_SECTION_NODE; }
virtual bool is_shadow_root() const { return false; }
virtual bool requires_svg_container() const { return false; }