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

21 lines
343 B
C++
Raw Normal View History

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