mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:02:43 +00:00 
			
		
		
		
	 24e25fe3d0
			
		
	
	
		24e25fe3d0
		
	
	
	
	
		
			
			Note that we don't queue mutation records or update live ranges yet, I've left those as FIXMEs.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			831 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			831 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Element.idl>
 | |
| #import <DOM/Node.idl>
 | |
| 
 | |
| interface CharacterData : Node {
 | |
| 
 | |
|     [LegacyNullToEmptyString] attribute DOMString data;
 | |
|     readonly attribute unsigned long length;
 | |
| 
 | |
|     DOMString substringData(unsigned long offset, unsigned long count);
 | |
|     undefined replaceData(unsigned long offset, unsigned long count, DOMString data);
 | |
| 
 | |
|     readonly attribute Element? nextElementSibling;
 | |
|     readonly attribute Element? previousElementSibling;
 | |
| 
 | |
|     // FIXME: These should come from a ChildNode mixin
 | |
|     [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();
 | |
| 
 | |
| };
 |