Преглед изворни кода

LibWeb: Remove UA style sheet rules from `<symbol>` presentational hints

Sam Atkins пре 1 година
родитељ
комит
f98659dd76
1 измењених фајлова са 0 додато и 9 уклоњено
  1. 0 9
      Userland/Libraries/LibWeb/SVG/SVGSymbolElement.cpp

+ 0 - 9
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)));
     }
 }