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

LibWeb: Render any specified list-style-image for list items

This commit is contained in:
Timothy Flynn 2021-10-29 09:00:30 -04:00 committed by Andreas Kling
parent eb0fb38cac
commit ef62118c8b
5 changed files with 37 additions and 7 deletions

View file

@ -20,6 +20,7 @@ public:
private:
virtual bool can_have_children() const override { return false; }
Gfx::Bitmap const* list_style_image_bitmap() const;
CSS::ListStyleType m_list_style_type { CSS::ListStyleType::None };
size_t m_index;