mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Event.idl>
 | |
| #import <HTML/MessagePort.idl>
 | |
| 
 | |
| // FIXME: typedef (WindowProxy or MessagePort or ServiceWorker) MessageEventSource;
 | |
| typedef (WindowProxy or MessagePort) MessageEventSource;
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/comms.html#messageevent
 | |
| [Exposed=(Window,Worker)]
 | |
| interface MessageEvent : Event {
 | |
|     constructor(DOMString type, optional MessageEventInit eventInitDict = {});
 | |
| 
 | |
|     readonly attribute any data;
 | |
|     readonly attribute USVString origin;
 | |
|     readonly attribute DOMString lastEventId;
 | |
|     readonly attribute MessageEventSource? source;
 | |
|     // FIXME: readonly attribute FrozenArray<MessagePort> ports;
 | |
| };
 | |
| 
 | |
| dictionary MessageEventInit : EventInit {
 | |
|     any data = null;
 | |
|     USVString origin = "";
 | |
|     DOMString lastEventId = "";
 | |
|     MessageEventSource? source = null;
 | |
|     // FIXME: sequence<MessagePort> ports = [];
 | |
| };
 | 
