mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:02:45 +00:00 
			
		
		
		
	 fd297a3248
			
		
	
	
		fd297a3248
		
	
	
	
	
		
			
			For example, when clicking the document body outside of a focused input element, we should unfocus that element.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			409 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			409 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/EventTarget.idl>
 | |
| #import <HTML/HTMLElement.idl>
 | |
| 
 | |
| [Exposed=Nobody] interface Internals {
 | |
| 
 | |
|     undefined signalTextTestIsDone();
 | |
|     undefined gc();
 | |
|     object hitTest(double x, double y);
 | |
| 
 | |
|     undefined sendText(HTMLElement target, DOMString text);
 | |
|     undefined commitText();
 | |
| 
 | |
|     undefined click(double x, double y);
 | |
| 
 | |
|     boolean dispatchUserActivatedEvent(EventTarget target, Event event);
 | |
| 
 | |
| };
 |