mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +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
Notes:
sideshowbarker
2024-07-17 09:56:12 +09:00
Author: https://github.com/Lubrsi
Commit: 1ceba560f4
Pull-request: https://github.com/SerenityOS/serenity/pull/14407
10 changed files with 68 additions and 1 deletions
20
Userland/Libraries/LibWeb/DOM/CDATASection.cpp
Normal file
20
Userland/Libraries/LibWeb/DOM/CDATASection.cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* 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()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue