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

LibWeb: Dispatch a click event after mousedown+mouseup on same target

This commit is contained in:
Andreas Kling 2022-02-07 13:27:17 +01:00
parent 6c31f6c073
commit fbd58f9615
2 changed files with 7 additions and 0 deletions

View file

@ -48,6 +48,8 @@ private:
WeakPtr<Layout::Node> m_mouse_event_tracking_layout_node;
NonnullOwnPtr<EditEventHandler> m_edit_event_handler;
WeakPtr<DOM::EventTarget> m_mousedown_target;
};
}