ladybird/Userland/Libraries/LibWeb/HTML/HTMLParagraphElement.cpp

20 lines
383 B
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/HTML/HTMLParagraphElement.h>
namespace Web::HTML {
HTMLParagraphElement::HTMLParagraphElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: HTMLElement(document, move(qualified_name))
{
}
HTMLParagraphElement::~HTMLParagraphElement()
{
}
}