mirror of
https://github.com/RGBCube/serenity
synced 2025-06-16 18:32:07 +00:00
15 lines
302 B
Text
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;
|
|
|
|
};
|