Changeset 118615 in webkit
- Timestamp:
- May 26, 2012, 3:08:43 PM (14 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Plugins/PDF/BuiltInPDFView.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r118560 r118615 1 2012-05-25 Maciej Stachowiak <mjs@apple.com> 2 3 REGRESSION (r116720): Subframe PDF scrolls extremely slowly 4 https://bugs.webkit.org/show_bug.cgi?id=87557 5 <rdar://problem/11499408> 6 7 Reviewed by Anders Carlsson. 8 9 It's not possible to make an automated test for this. 10 11 * WebProcess/Plugins/PDF/BuiltInPDFView.mm: 12 (WebKit::BuiltInPDFView::wantsWheelEvents): Return true instead of false and delete 13 misleading comment. While the built-in PDF view would get added to the set of scrollable 14 areas anyway, there are some code paths that check wantsWheelEvents explicitly, so it seems 15 necessary to reutrn true. 16 1 17 2012-05-25 Brady Eidson <beidson@apple.com> 2 18 -
trunk/Source/WebKit2/WebProcess/Plugins/PDF/BuiltInPDFView.mm
r116720 r118615 474 474 bool BuiltInPDFView::wantsWheelEvents() 475 475 { 476 // We return false here even though we do want wheel events, because we add ourselves to the scrollable area set in updateScrollbars(). 477 return false; 476 return true; 478 477 } 479 478
Note:
See TracChangeset
for help on using the changeset viewer.