mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:32:43 +00:00 
			
		
		
		
	 d4b2eb22e1
			
		
	
	
		d4b2eb22e1
		
	
	
	
	
		
			
			These circular imports led to the generator silently failing to generate the required methods/properties.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/DocumentFragment.idl>
 | |
| #import <DOM/InnerHTML.idl>
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#shadowroot
 | |
| interface ShadowRoot : DocumentFragment {
 | |
|     // FIXME: mode should return a ShadowRootMode
 | |
|     readonly attribute DOMString mode;
 | |
|     // FIXME: readonly attribute boolean delegatesFocus;
 | |
|     // FIXME: readonly attribute SlotAssignmentMode slotAssignment;
 | |
|     readonly attribute Element host;
 | |
|     // FIXME: attribute EventHandler onslotchange;
 | |
| };
 | |
| 
 | |
| ShadowRoot includes InnerHTML;
 | |
| 
 | |
| enum ShadowRootMode { "open", "closed" };
 | |
| enum SlotAssignmentMode { "manual", "named" };
 |