summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl
blob: 1cba0af8fd7a1748ffb84b207a41ea9ae170462d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;

};