[Webkit-unassigned] [Bug 107611] [chromium] Fix rubber-band effect on non-scrollable pages

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 22 20:57:45 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=107611





--- Comment #3 from Antonio Gomes <tonikitoo at webkit.org>  2013-01-22 20:59:38 PST ---
(From update of attachment 184098)
View in context: https://bugs.webkit.org/attachment.cgi?id=184098&action=review

> Source/WebCore/page/FrameView.cpp:-3777
> -    if (!isScrollable())

can not isScrollable get relaxed instead? so it could take overscroll/rubber-band into account.

enum ScrollabilityStrategy { ConsiderRubberBand, IgnoreRubberBand };
bool isScrollable(ScrollabilityStrategy strategy)
{
    // Even non overflown views are scrollable if rubber-band is enforced
    if (strategy == ConsiderRubberBand)
        return true;
    (...)
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list