1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47:35 +00:00

LibWeb: Make ListItemMarkerBox inherit style from ListItemBox

This commit is contained in:
Andreas Kling 2021-09-23 19:47:53 +02:00
parent ca28a118ae
commit c5b4928f4a
3 changed files with 6 additions and 4 deletions

View file

@ -13,7 +13,7 @@ namespace Web::Layout {
class ListItemMarkerBox final : public Box {
public:
explicit ListItemMarkerBox(DOM::Document&, CSS::ListStyleType, size_t index);
explicit ListItemMarkerBox(DOM::Document&, CSS::ListStyleType, size_t index, NonnullRefPtr<CSS::StyleProperties>);
virtual ~ListItemMarkerBox() override;
virtual void paint(PaintContext&, PaintPhase) override;