Changeset 153084 in webkit
- Timestamp:
- Jul 24, 2013, 7:53:31 AM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r153072 r153084 1 2013-07-24 Anton Obzhirov <a.obzhirov@samsung.com> 2 3 [GTK] [WK2] Handle wheel event with delta zero 4 https://bugs.webkit.org/show_bug.cgi?id=118973 5 6 Reviewed by Gustavo Noronha Silva. 7 8 Added handling of zero mouse scroll deltas in EventSenderProxy similar 9 to WK1 and Qt/EFL ports. 10 11 fast/events/platform-wheelevent-with-delta-zero-crash.html is no longer 12 failing on WK2. 13 14 * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp: 15 (WTR::EventSenderProxy::mouseScrollBy): 16 1 17 2013-07-23 Andreas Kling <akling@apple.com> 2 18 -
trunk/Tools/WebKitTestRunner/gtk/EventSenderProxyGtk.cpp
r152530 r153084 378 378 void EventSenderProxy::mouseScrollBy(int horizontal, int vertical) 379 379 { 380 // Copy behaviour of Qt and EFL - just return in case of (0,0) mouse scroll 381 if (!horizontal && !vertical) 382 return; 383 380 384 GdkEvent* event = gdk_event_new(GDK_SCROLL); 381 385 event->scroll.x = m_position.x;
Note:
See TracChangeset
for help on using the changeset viewer.