mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 13:02:36 +00:00
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
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;
|
|
|
|
};
|