mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 01:23:19 +00:00
19 lines
470 B
C++
19 lines
470 B
C++
![]() |
#include <LibGUI/GPainter.h>
|
||
|
#include <LibHTML/Layout/LayoutListItemMarker.h>
|
||
|
|
||
|
LayoutListItemMarker::LayoutListItemMarker()
|
||
|
: LayoutNode(nullptr)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
LayoutListItemMarker::~LayoutListItemMarker()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LayoutListItemMarker::render(RenderingContext& context)
|
||
|
{
|
||
|
Rect bullet_rect { 0, 0, 4, 4 };
|
||
|
bullet_rect.center_within(rect());
|
||
|
context.painter().fill_rect(bullet_rect, style().color_or_fallback(CSS::PropertyID::Color, document(), Color::Black));
|
||
|
}
|