mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +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;
|
|
|
|
};
|