
This means we can instantiate them for pseudo-elements, which don't have an associated Element. They all pass it to their parent as a `Layout::Node*` and handle a lack of `layout_node()` already so this won't affect any functionality.
27 lines
609 B
C++
27 lines
609 B
C++
/*
|
|
* Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Layout/ListItemBox.h>
|
|
#include <LibWeb/Layout/ListItemMarkerBox.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
ListItemBox::ListItemBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
|
|
: Layout::BlockContainer(document, element, move(style))
|
|
{
|
|
}
|
|
|
|
ListItemBox::~ListItemBox()
|
|
{
|
|
}
|
|
|
|
void ListItemBox::set_marker(RefPtr<ListItemMarkerBox> marker)
|
|
{
|
|
m_marker = move(marker);
|
|
}
|
|
|
|
}
|