mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:42:44 +00:00 
			
		
		
		
	 725a758c66
			
		
	
	
		725a758c66
		
	
	
	
	
		
			
			From the WebIDL grammar: (https://webidl.spec.whatwg.org/#prod-Argument) Argument :: ExtendedAttributeList ArgumentRest ArgumentRest :: optional TypeWithExtendedAttributes ArgumentName Default TypeWithExtendedAttributes :: ExtendedAttributeList Type One IDL file has been updated to match the spec literally, as it can now be parsed properly.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			602 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			602 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://drafts.csswg.org/cssom/#cssstyledeclaration
 | |
| [Exposed=Window]
 | |
| interface CSSStyleDeclaration {
 | |
| 
 | |
|     [CEReactions] attribute CSSOMString cssText;
 | |
| 
 | |
|     readonly attribute unsigned long length;
 | |
|     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);
 | |
| 
 | |
| };
 |