blob: c46c9dd480f549e2f43e935dd394836962962067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import <UIEvents/UIEvent.idl>
[Exposed=Window, NoInstanceWrapper]
interface FocusEvent : UIEvent {
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
readonly attribute EventTarget? relatedTarget;
};
dictionary FocusEventInit : UIEventInit {
EventTarget? relatedTarget = null;
};
|