Changeset 99853 in webkit
- Timestamp:
- Nov 10, 2011, 7:32:53 AM (14 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r99852 r99853 1 2011-11-10 Simon Hausmann <simon.hausmann@nokia.com> 2 3 [Qt] Fix keyboard related layout tests after API refactoring 4 5 Reviewed by Tor Arne Vestbø. 6 7 Send key events to the handling page item, not the view. 8 9 * WebKitTestRunner/qt/PlatformWebViewQt.cpp: 10 (WTR::PlatformWebView::sendEvent): 11 (WTR::PlatformWebView::postEvent): 12 1 13 2011-11-10 Alexandre Mazari <amazari@igalia.com> 2 14 -
trunk/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
r99850 r99853 112 112 bool PlatformWebView::sendEvent(QEvent* event) 113 113 { 114 return QCoreApplication::sendEvent(m_view , event);114 return QCoreApplication::sendEvent(m_view->page(), event); 115 115 } 116 116 117 117 void PlatformWebView::postEvent(QEvent* event) 118 118 { 119 QCoreApplication::postEvent(m_view , event);119 QCoreApplication::postEvent(m_view->page(), event); 120 120 } 121 121
Note:
See TracChangeset
for help on using the changeset viewer.