mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSRule.idl>
 | |
| #import <CSS/CSSRuleList.idl>
 | |
| 
 | |
| [Exposed=Window]
 | |
| interface CSSGroupingRule : CSSRule {
 | |
|     [SameObject, ImplementedAs=css_rules_for_bindings] readonly attribute CSSRuleList cssRules;
 | |
|     unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
 | |
|     undefined deleteRule(unsigned long index);
 | |
| };
 | 
