ladybird/Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl

16 lines
302 B
Plaintext

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