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

LibWeb: Fix buttons with TextNode label

Fixes #20472.
This commit is contained in:
Andi Gallo 2023-08-11 03:19:31 +00:00 committed by Andreas Kling
parent afb19a2cff
commit b34b80104f
9 changed files with 94 additions and 39 deletions

View file

@ -207,6 +207,7 @@ public:
Gfx::Font const& font() const { return *m_font; }
CSSPixels line_height() const { return m_line_height; }
void set_line_height(CSSPixels line_height) { m_line_height = line_height; }
Vector<CSS::BackgroundLayerData> const& background_layers() const { return computed_values().background_layers(); }
const CSS::AbstractImageStyleValue* list_style_image() const { return m_list_style_image; }