From ef62118c8b1707a4835035ebd04b5891bda9ec13 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 29 Oct 2021 09:00:30 -0400 Subject: LibWeb: Render any specified list-style-image for list items --- Userland/Libraries/LibWeb/Layout/Node.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Userland/Libraries/LibWeb/Layout/Node.h') diff --git a/Userland/Libraries/LibWeb/Layout/Node.h b/Userland/Libraries/LibWeb/Layout/Node.h index 014db131d4..0215ecff36 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.h +++ b/Userland/Libraries/LibWeb/Layout/Node.h @@ -206,6 +206,7 @@ public: float line_height() const { return m_line_height; } float font_size() const { return m_font_size; } const CSS::ImageStyleValue* background_image() const { return m_background_image; } + const CSS::ImageStyleValue* list_style_image() const { return m_list_style_image; } NonnullRefPtr create_anonymous_wrapper() const; @@ -222,6 +223,7 @@ private: float m_line_height { 0 }; float m_font_size { 0 }; RefPtr m_background_image; + RefPtr m_list_style_image; bool m_has_definite_height { false }; bool m_has_definite_width { false }; -- cgit v1.2.3