123456789101112131415161718192021222324252627 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <LibWeb/Bindings/Intrinsics.h>
- #include <LibWeb/HTML/HTMLHRElement.h>
- namespace Web::HTML {
- JS_DEFINE_ALLOCATOR(HTMLHRElement);
- HTMLHRElement::HTMLHRElement(DOM::Document& document, DOM::QualifiedName qualified_name)
- : HTMLElement(document, move(qualified_name))
- {
- }
- HTMLHRElement::~HTMLHRElement() = default;
- void HTMLHRElement::initialize(JS::Realm& realm)
- {
- Base::initialize(realm);
- WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLHRElement);
- }
- }
|