Skip to content

Commit e205f93

Browse files
committed
LibWeb: Add missing super call in SVGSymbolElement::attribute_changed()
This would cause subsequent commits to break tests otherwise.
1 parent 83c3490 commit e205f93

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ void SVGSymbolElement::apply_presentational_hints(CSS::StyleProperties& style) c
4141

4242
void SVGSymbolElement::attribute_changed(FlyString const& name, Optional<DeprecatedString> const& value)
4343
{
44+
Base::attribute_changed(name, value);
4445
if (name.equals_ignoring_ascii_case(SVG::AttributeNames::viewBox))
4546
m_view_box = try_parse_view_box(value.value_or(""));
4647
}

0 commit comments

Comments
 (0)