summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/BreakNode.cpp
blob: 2cd02d44a4a518025d6281da1bc2f0aa5a59e98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibWeb/Layout/BlockBox.h>
#include <LibWeb/Layout/BreakNode.h>
#include <LibWeb/Layout/InlineFormattingContext.h>

namespace Web::Layout {

BreakNode::BreakNode(DOM::Document& document, HTML::HTMLBRElement& element)
    : Layout::NodeWithStyleAndBoxModelMetrics(document, &element, CSS::StyleProperties::create())
{
    set_inline(true);
}

BreakNode::~BreakNode()
{
}

void BreakNode::split_into_lines(InlineFormattingContext& context, LayoutMode)
{
    auto& line_box = context.containing_block().add_line_box();
    line_box.add_fragment(*this, 0, 0, 0, context.containing_block().line_height());
}

}