ladybird/Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl
2023-04-06 08:41:43 +02:00

16 lines
318 B
Plaintext

#import <UIEvents/UIEvent.idl>
[Exposed=Window, UseNewAKString]
interface FocusEvent : UIEvent {
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
readonly attribute EventTarget? relatedTarget;
};
dictionary FocusEventInit : UIEventInit {
EventTarget? relatedTarget = null;
};