diff --git a/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp index 5f327568e8..7463eb82af 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp @@ -33,18 +33,9 @@ void SVGSymbolElement::apply_presentational_hints(CSS::StyleProperties& style) c { Base::apply_presentational_hints(style); - // The user agent style sheet sets the overflow property for ‘symbol’ elements to hidden. - auto hidden = CSS::IdentifierStyleValue::create(CSS::ValueID::Hidden); - style.set_property(CSS::PropertyID::Overflow, CSS::OverflowStyleValue::create(hidden, hidden)); - if (is_direct_child_of_use_shadow_tree()) { // The generated instance of a ‘symbol’ that is the direct referenced element of a ‘use’ element must always have a computed value of inline for the display property. style.set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Inline))); - } else { - // FIXME: When we have a DefaultSVG.css then use https://svgwg.org/svg2-draft/styling.html#UAStyleSheet instead. - // The user agent must set the display property on the ‘symbol’ element to none, as part of the user agent style sheet, - // and this declaration must have importance over any other CSS rule or presentation attribute. - style.set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::None))); } }