mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 07:32:07 +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
|
@ -17,6 +17,11 @@ Text::Text(Document& document, String const& data)
|
|||
{
|
||||
}
|
||||
|
||||
Text::Text(Document& document, NodeType type, String const& data)
|
||||
: CharacterData(document, type, data)
|
||||
{
|
||||
}
|
||||
|
||||
// https://dom.spec.whatwg.org/#dom-text-text
|
||||
NonnullRefPtr<Text> Text::create_with_global_object(Bindings::WindowObject& window, String const& data)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue