mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 07:04:59 +00:00

For example, when clicking the document body outside of a focused input element, we should unfocus that element.
17 lines
409 B
Text
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);
|
|
|
|
};
|