1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 07:04:59 +00:00
serenity/Userland/Libraries/LibWeb/Internals/Internals.idl
Timothy Flynn fd297a3248 LibWeb: Run the unfocusing steps when a click does not focus anything
For example, when clicking the document body outside of a focused input
element, we should unfocus that element.
2023-12-04 01:33:57 +01:00

17 lines
409 B
Text

#import <DOM/EventTarget.idl>
#import <HTML/HTMLElement.idl>
[Exposed=Nobody] interface Internals {
undefined signalTextTestIsDone();
undefined gc();
object hitTest(double x, double y);
undefined sendText(HTMLElement target, DOMString text);
undefined commitText();
undefined click(double x, double y);
boolean dispatchUserActivatedEvent(EventTarget target, Event event);
};