mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 21:48:11 +00:00

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 *
20 lines
340 B
C++
20 lines
340 B
C++
/*
|
|
* Copyright (c) 2020, Luke Wilde <luke.wilde@live.co.uk>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/DOM/DocumentFragment.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
DocumentFragment::DocumentFragment(Document& document)
|
|
: ParentNode(document, NodeType::DOCUMENT_FRAGMENT_NODE)
|
|
{
|
|
}
|
|
|
|
DocumentFragment::~DocumentFragment()
|
|
{
|
|
}
|
|
|
|
}
|