mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:02:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			750 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			750 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://drafts.csswg.org/cssom/#cssstyledeclaration
 | |
| [Exposed=Window]
 | |
| interface CSSStyleDeclaration {
 | |
| 
 | |
|     [CEReactions] attribute CSSOMString cssText;
 | |
| 
 | |
|     readonly attribute unsigned long length;
 | |
|     getter CSSOMString item(unsigned long index);
 | |
| 
 | |
|     CSSOMString getPropertyValue(CSSOMString property);
 | |
|     CSSOMString getPropertyPriority(CSSOMString property);
 | |
| 
 | |
|     [CEReactions] undefined setProperty(CSSOMString property, [LegacyNullToEmptyString] CSSOMString value, optional [LegacyNullToEmptyString] CSSOMString priority = "");
 | |
|     [CEReactions] CSSOMString removeProperty(CSSOMString property);
 | |
| 
 | |
|     // FIXME: readonly attribute CSSRule? parentRule;
 | |
|     // FIXME: [CEReactions] attribute [LegacyNullToEmptyString] CSSOMString cssFloat;
 | |
| 
 | |
| };
 | 
