mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:12:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			550 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			550 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSRule.idl>
 | |
| #import <CSS/CSSStyleSheet.idl>
 | |
| #import <CSS/MediaList.idl>
 | |
| 
 | |
| // https://drafts.csswg.org/cssom/#the-cssimportrule-interface
 | |
| [Exposed=Window]
 | |
| interface CSSImportRule : CSSRule {
 | |
|     readonly attribute USVString href;
 | |
|     // FIXME: [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
 | |
|     [SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet styleSheet;
 | |
|     // FIXME: readonly attribute CSSOMString? layerName;
 | |
|     // FIXME: readonly attribute CSSOMString? supportsText;
 | |
| };
 | 
