This addresses both bug 81536 and the regression caused by it.
Created attachment 134855 [details] Patch
Comment on attachment 134855 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=134855&action=review Looks good. > Source/WebKit/blackberry/WebKitSupport/SelectionHandler.cpp:814 > + for (unsigned int i = 0; i < rectList.size(); i++) { Just unsigned is likely enough. > Source/WebKit/blackberry/WebKitSupport/SelectionHandler.cpp:886 > + for (unsigned int i = 0; i < unclippedRegion.numRects(); i++) Ditto.
Comment on attachment 134855 [details] Patch Clearing flags on attachment: 134855 Committed r112721: <http://trac.webkit.org/changeset/112721>
All reviewed patches have been landed. Closing bug.
Comment on attachment 134855 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=134855&action=review > Source/WebKit/blackberry/WebKitSupport/SelectionHandler.cpp:808 > +static bool regionRectListContainsPoint(IntRectRegion& region, WebCore::IntPoint point) 1st param should be const 2nd param should be const&
This patch caused a general error causing selection to fail. Bug 83355, the temporary fix for that, regressed this bug.
Created attachment 136906 [details] Fixed Patch
Comment on attachment 136906 [details] Fixed Patch LGTM.
Comment on attachment 136906 [details] Fixed Patch Clearing flags on attachment: 136906 Committed r113987: <http://trac.webkit.org/changeset/113987>