mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	 a28197669a
			
		
	
	
		a28197669a
		
	
	
	
	
		
			
			CSSStyleDeclaration is a base class that's used by various collections of style properties or descriptors. This commit moves all style-property-related code into CSSStyleProperties, where it belongs. As noted in the previous commit, we also apply the CSSStyleProperties prototype now.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSStyleDeclaration.idl>
 | |
| #import <CSS/GeneratedCSSStyleProperties.idl>
 | |
| 
 | |
| // https://drafts.csswg.org/cssom/#cssstyleproperties
 | |
| [Exposed=Window]
 | |
| interface CSSStyleProperties : CSSStyleDeclaration {
 | |
|     [CEReactions, LegacyNullToEmptyString] attribute CSSOMString cssFloat;
 | |
| };
 | |
| 
 | |
| CSSStyleProperties includes GeneratedCSSStyleProperties;
 |