1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-16 18:32:07 +00:00
serenity/Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl

15 lines
302 B
Text

#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;
};