Changeset 90231 in webkit
- Timestamp:
- Jul 1, 2011, 9:17:44 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/qt-wk2/Skipped (modified) (1 diff)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r90226 r90231 1 2011-07-01 Balazs Kelemen <kbalazs@webkit.org> 2 3 Reviewed by Andreas Kling. 4 5 [X11][WK2] plugins/mouse-evets-fixedpos.html is failing because of broken event propagation 6 https://bugs.webkit.org/show_bug.cgi?id=63239 7 8 * platform/qt-wk2/Skipped: 9 1 10 2011-07-01 Alice Boxhall <aboxhall@chromium.org> 2 11 -
trunk/LayoutTests/platform/qt-wk2/Skipped
r90021 r90231 1492 1492 # Unexplained plugin failures 1493 1493 plugins/embed-prefers-plugins-for-images.html 1494 plugins/mouse-events-fixedpos.html1495 1494 plugins/netscape-dom-access.html 1496 1495 plugins/npp-set-window-called-during-destruction.html -
trunk/Source/WebKit2/ChangeLog
r90224 r90231 1 2011-07-01 Balazs Kelemen <kbalazs@webkit.org> 2 3 Reviewed by Andreas Kling. 4 5 [X11][WK2] plugins/mouse-evets-fixedpos.html is failing because of broken event propagation 6 https://bugs.webkit.org/show_bug.cgi?id=63239 7 8 * WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp: 9 Revert the return value of NPP_HandleEvent because the plugin function 10 returns with 0 if it handled the event. 11 (WebKit::NetscapePlugin::platformHandleMouseEvent): 12 (WebKit::NetscapePlugin::platformHandleWheelEvent): 13 (WebKit::NetscapePlugin::platformHandleMouseEnterEvent): 14 (WebKit::NetscapePlugin::platformHandleMouseLeaveEvent): 15 (WebKit::NetscapePlugin::platformHandleKeyboardEvent): 16 1 17 2011-07-01 Mark Rowe <mrowe@apple.com> 2 18 -
trunk/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
r89921 r90231 435 435 } 436 436 437 return NPP_HandleEvent(&xEvent);437 return !NPP_HandleEvent(&xEvent); 438 438 } 439 439 … … 454 454 setXButtonEventFieldsByWebWheelEvent(xEvent, event, m_frameRect.location()); 455 455 456 return NPP_HandleEvent(&xEvent);456 return !NPP_HandleEvent(&xEvent); 457 457 } 458 458 … … 481 481 setXCrossingEventFields(xEvent, event, m_frameRect.location(), EnterNotify); 482 482 483 return NPP_HandleEvent(&xEvent);483 return !NPP_HandleEvent(&xEvent); 484 484 } 485 485 … … 493 493 setXCrossingEventFields(xEvent, event, m_frameRect.location(), LeaveNotify); 494 494 495 return NPP_HandleEvent(&xEvent);495 return !NPP_HandleEvent(&xEvent); 496 496 } 497 497 … … 525 525 setXKeyEventFields(xEvent, event); 526 526 527 return NPP_HandleEvent(&xEvent);527 return !NPP_HandleEvent(&xEvent); 528 528 } 529 529
Note:
See TracChangeset
for help on using the changeset viewer.