1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:07:34 +00:00

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.
This commit is contained in:
Timothy Flynn 2023-12-03 09:54:26 -05:00 committed by Andreas Kling
parent 48240a6fc3
commit fd297a3248
6 changed files with 42 additions and 0 deletions

View file

@ -84,6 +84,16 @@ void Internals::commit_text()
page->handle_keydown(Key_Return, 0, 0);
}
void Internals::click(double x, double y)
{
auto* page = global_object().browsing_context()->page();
if (!page)
return;
page->handle_mousedown({ x, y }, { x, y }, 1, 0, 0);
page->handle_mouseup({ x, y }, { x, y }, 1, 0, 0);
}
WebIDL::ExceptionOr<bool> Internals::dispatch_user_activated_event(DOM::EventTarget& target, DOM::Event& event)
{
event.set_is_trusted(true);

View file

@ -25,6 +25,8 @@ public:
void send_text(HTML::HTMLElement&, String const&);
void commit_text();
void click(double x, double y);
WebIDL::ExceptionOr<bool> dispatch_user_activated_event(DOM::EventTarget&, DOM::Event& event);
private:

View file

@ -10,6 +10,8 @@
undefined sendText(HTMLElement target, DOMString text);
undefined commitText();
undefined click(double x, double y);
boolean dispatchUserActivatedEvent(EventTarget target, Event event);
};