/src/serenity/Userland/Libraries/LibWeb/HTML/HTMLBRElement.cpp
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> |
3 | | * |
4 | | * SPDX-License-Identifier: BSD-2-Clause |
5 | | */ |
6 | | |
7 | | #include <LibWeb/Bindings/HTMLBRElementPrototype.h> |
8 | | #include <LibWeb/DOM/Document.h> |
9 | | #include <LibWeb/HTML/HTMLBRElement.h> |
10 | | #include <LibWeb/Layout/BreakNode.h> |
11 | | |
12 | | namespace Web::HTML { |
13 | | |
14 | | JS_DEFINE_ALLOCATOR(HTMLBRElement); |
15 | | |
16 | | HTMLBRElement::HTMLBRElement(DOM::Document& document, DOM::QualifiedName qualified_name) |
17 | 0 | : HTMLElement(document, move(qualified_name)) |
18 | 0 | { |
19 | 0 | } |
20 | | |
21 | 0 | HTMLBRElement::~HTMLBRElement() = default; |
22 | | |
23 | | void HTMLBRElement::initialize(JS::Realm& realm) |
24 | 0 | { |
25 | 0 | Base::initialize(realm); |
26 | 0 | WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLBRElement); |
27 | 0 | } |
28 | | |
29 | | JS::GCPtr<Layout::Node> HTMLBRElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties> style) |
30 | 0 | { |
31 | 0 | return heap().allocate_without_realm<Layout::BreakNode>(document(), *this, move(style)); |
32 | 0 | } |
33 | | |
34 | | } |