
This commit introduces a WEB_SET_PROTOTYPE_FOR_INTERFACE macro that caches the interface name in a local static FlyString. This means that we only pay for FlyString-from-literal lookup once per browser lifetime instead of every time the interface is instantiated.
27 lines
551 B
C++
27 lines
551 B
C++
/*
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/DOM/CDATASection.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
JS_DEFINE_ALLOCATOR(CDATASection);
|
|
|
|
CDATASection::CDATASection(Document& document, String const& data)
|
|
: Text(document, NodeType::CDATA_SECTION_NODE, data)
|
|
{
|
|
}
|
|
|
|
CDATASection::~CDATASection() = default;
|
|
|
|
void CDATASection::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(CDATASection);
|
|
}
|
|
|
|
}
|