From e205f93cbbe954c402af32efdda10e58d193ee46 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 2 Nov 2023 17:00:12 +0100 Subject: [PATCH] LibWeb: Add missing super call in SVGSymbolElement::attribute_changed() This would cause subsequent commits to break tests otherwise. --- Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp index 4f1bb9448da..d5794578ef1 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp @@ -41,6 +41,7 @@ void SVGSymbolElement::apply_presentational_hints(CSS::StyleProperties& style) c void SVGSymbolElement::attribute_changed(FlyString const& name, Optional const& value) { + Base::attribute_changed(name, value); if (name.equals_ignoring_ascii_case(SVG::AttributeNames::viewBox)) m_view_box = try_parse_view_box(value.value_or("")); }