mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:32:43 +00:00 
			
		
		
		
	 0e758b4da8
			
		
	
	
		0e758b4da8
		
	
	
	
	
		
			
			This is only ever null at the moment, as we only set it on <style> elements to begin with.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			448 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			448 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSStyleSheet.idl>
 | |
| #import <CSS/MediaList.idl>
 | |
| #import <DOM/Element.idl>
 | |
| 
 | |
| interface StyleSheet {
 | |
| 
 | |
|     readonly attribute Element? ownerNode;
 | |
|     readonly attribute CSSOMString type;
 | |
| 
 | |
|     readonly attribute USVString? href;
 | |
|     readonly attribute CSSStyleSheet? parentStyleSheet;
 | |
|     readonly attribute DOMString? title;
 | |
|     // [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
 | |
|     attribute boolean disabled;
 | |
| 
 | |
| };
 |