mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 20:42:11 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
// https://w3c.github.io/uievents/#idl-focusevent
|
|
[Exposed=Window]
|
|
interface FocusEvent : UIEvent {
|
|
|
|
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
|
|
readonly attribute EventTarget? relatedTarget;
|
|
|
|
};
|
|
|
|
// https://w3c.github.io/uievents/#idl-focuseventinit
|
|
dictionary FocusEventInit : UIEventInit {
|
|
|
|
EventTarget? relatedTarget = null;
|
|
|
|
};
|