mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:02:45 +00:00 
			
		
		
		
	 d462a6720a
			
		
	
	
		d462a6720a
		
	
	
	
	
		
			
			We now follow the "update a style block" algorithm from the HTML spec instead of using the ad-hoc CSSLoader mechanism. This necessitated improving our StyleSheet and CSSStyleSheet classes as well, so that's baked into this commit.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 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;
 | |
| 
 | |
| };
 |