2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-10-12 13:47:49 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLBRElement.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/Node.h>
|
2019-10-12 13:47:49 +02:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
class BreakNode final : public NodeWithStyleAndBoxModelMetrics {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_CELL(BreakNode, NodeWithStyleAndBoxModelMetrics);
|
|
|
|
GC_DECLARE_ALLOCATOR(BreakNode);
|
2022-10-17 14:41:50 +02:00
|
|
|
|
2019-10-12 13:47:49 +02:00
|
|
|
public:
|
2024-12-20 16:35:12 +01:00
|
|
|
BreakNode(DOM::Document&, HTML::HTMLBRElement&, GC::Ref<CSS::ComputedProperties>);
|
2020-11-22 15:53:01 +01:00
|
|
|
virtual ~BreakNode() override;
|
2019-10-12 13:47:49 +02:00
|
|
|
|
2025-01-21 09:12:05 -05:00
|
|
|
const HTML::HTMLBRElement& dom_node() const { return as<HTML::HTMLBRElement>(*Node::dom_node()); }
|
2019-10-12 13:47:49 +02:00
|
|
|
|
|
|
|
private:
|
2021-10-26 16:15:53 +02:00
|
|
|
virtual bool is_break_node() const final { return true; }
|
2023-09-14 14:30:39 +02:00
|
|
|
virtual bool can_have_children() const override { return false; }
|
2019-10-12 13:47:49 +02:00
|
|
|
};
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2021-10-26 16:15:53 +02:00
|
|
|
template<>
|
|
|
|
inline bool Node::fast_is<BreakNode>() const { return is_break_node(); }
|
|
|
|
|
2020-03-07 10:27:02 +01:00
|
|
|
}
|