
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
36 lines
839 B
C++
36 lines
839 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/DOM/Element.h>
|
|
#include <LibWeb/DOM/NonElementParentNode.h>
|
|
#include <LibWeb/DOM/ParentNode.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
class DocumentFragment
|
|
: public ParentNode
|
|
, public NonElementParentNode<DocumentFragment> {
|
|
public:
|
|
using WrapperType = Bindings::DocumentFragmentWrapper;
|
|
|
|
explicit DocumentFragment(Document& document);
|
|
virtual ~DocumentFragment() override;
|
|
|
|
virtual FlyString node_name() const override { return "#document-fragment"; }
|
|
|
|
RefPtr<Element> host() { return m_host; }
|
|
const RefPtr<Element> host() const { return m_host; }
|
|
|
|
void set_host(Element& host) { m_host = host; }
|
|
|
|
private:
|
|
RefPtr<Element> m_host;
|
|
};
|
|
|
|
}
|