ladybird/Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl
2023-10-25 19:45:41 +02:00

18 lines
406 B
Plaintext

#import <UIEvents/UIEvent.idl>
// https://www.w3.org/TR/uievents/#idl-focusevent
[Exposed=Window]
interface FocusEvent : UIEvent {
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
readonly attribute EventTarget? relatedTarget;
};
// https://www.w3.org/TR/uievents/#idl-focuseventinit
dictionary FocusEventInit : UIEventInit {
EventTarget? relatedTarget = null;
};