mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			480 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			480 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // FIXME: This #import causes a circular import-related error
 | |
| // #import <DOM/Node.idl>
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#childnode
 | |
| interface mixin ChildNode {
 | |
|     [CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
 | |
|     [CEReactions, Unscopable] undefined after((Node or DOMString)... nodes);
 | |
|     [CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
 | |
|     [CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
 | |
| };
 | 
