/* * Copyright (c) 2022, Luke Wilde * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::DOM { CDATASection::CDATASection(Document& document, String const& data) : Text(document, NodeType::CDATA_SECTION_NODE, data) { set_prototype(&Bindings::cached_web_prototype(realm(), "CDATASection")); } CDATASection::~CDATASection() = default; }