Bug 96750

Summary: [BlackBerry] Prevent scroll adjustment of input fields when region of interest mechanism active
Product: WebKit Reporter: Arvid Nilsson <anilsson>
Component: WebKit BlackBerryAssignee: Arvid Nilsson <anilsson>
Status: RESOLVED FIXED    
Severity: Normal CC: anilsson, mifenton, rwlbuis, tonikitoo, webkit.review.bot
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch none

Arvid Nilsson
Reported 2012-09-14 04:02:28 PDT
The region of interest mechanism replaces the scrolling/zooming functionality in BlackBerry::WebKit::InputHandler::ensureFocusTextElementVisible(CaretScrollType scrollType). We accomplish this by introducing a new fine-grained setting for the various adjustment modes. Whoever enables ROI needs to disable all scroll types using the new setting. PR 208387
Attachments
Patch (4.45 KB, patch)
2012-09-14 17:11 PDT, Arvid Nilsson
no flags
Arvid Nilsson
Comment 1 2012-09-14 17:11:22 PDT
Antonio Gomes
Comment 2 2012-09-17 07:04:55 PDT
Comment on attachment 164252 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=164252&action=review > Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp:1055 > - if (!Platform::Settings::instance()->allowCenterScrollAdjustmentForInputFields() && scrollType != EdgeIfNeeded) > + if (!(Platform::Settings::instance()->allowedScrollAdjustmentForInputFields() & scrollType)) I would name it scrollAdjustmentForInputFieldsPolicy, but this this also ok. > Source/WebKit/blackberry/WebKitSupport/InputHandler.h:71 > + enum CaretScrollType { CenterAlways = BlackBerry::Platform::Settings::ScrollAdjustmentCenterAlways, > + CenterIfNeeded = BlackBerry::Platform::Settings::ScrollAdjustmentCenterIfNeeded, > + EdgeIfNeeded = BlackBerry::Platform::Settings::ScrollAdjustmentEdgeIfNeeded }; there are compile asserts we can add to ensure these values match.
WebKit Review Bot
Comment 3 2012-09-18 01:16:58 PDT
Comment on attachment 164252 [details] Patch Clearing flags on attachment: 164252 Committed r128858: <http://trac.webkit.org/changeset/128858>
WebKit Review Bot
Comment 4 2012-09-18 01:17:01 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.