mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 11:57:19 +02:00
16 lines
302 B
Plaintext
16 lines
302 B
Plaintext
#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;
|
|
|
|
};
|