mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	LibWeb: Remove UA style sheet rules from <symbol> presentational hints
				
					
				
			This commit is contained in:
		
							parent
							
								
									ae4b8d86df
								
							
						
					
					
						commit
						f98659dd76
					
				
					 1 changed files with 0 additions and 9 deletions
				
			
		|  | @ -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))); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Sam Atkins
						Sam Atkins