Newer
Older
minerva / Userland / Libraries / LibWeb / UIEvents / FocusEvent.idl
@minerva minerva on 13 Jul 406 bytes Initial commit
#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;

};