mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:02:46 +00:00 
			
		
		
		
	 f188e48c3c
			
		
	
	
		f188e48c3c
		
	
	
	
	
		
			
			Note that the value is always 0 for now. Actually initializing the time stamp is left as a FIXME.
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			996 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			996 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| interface Event {
 | |
| 
 | |
|     constructor(DOMString type, optional EventInit eventInitDict = {});
 | |
| 
 | |
|     readonly attribute DOMString type;
 | |
|     readonly attribute EventTarget? target;
 | |
|     readonly attribute EventTarget? srcTarget;
 | |
|     readonly attribute EventTarget? currentTarget;
 | |
| 
 | |
|     readonly attribute unsigned short eventPhase;
 | |
| 
 | |
|     undefined stopPropagation();
 | |
|     attribute boolean cancelBubble;
 | |
|     undefined stopImmediatePropagation();
 | |
| 
 | |
|     readonly attribute boolean bubbles;
 | |
|     readonly attribute boolean cancelable;
 | |
|     attribute boolean returnValue;
 | |
|     undefined preventDefault();
 | |
|     readonly attribute boolean defaultPrevented;
 | |
|     readonly attribute boolean composed;
 | |
| 
 | |
|     readonly attribute boolean isTrusted;
 | |
|     readonly attribute double timeStamp;
 | |
| 
 | |
|     undefined initEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false);
 | |
| 
 | |
| };
 | |
| 
 | |
| dictionary EventInit {
 | |
|     boolean bubbles = false;
 | |
|     boolean cancelable = false;
 | |
|     boolean composed = false;
 | |
| };
 |