Changeset 84505 in webkit


Ignore:
Timestamp:
Apr 21, 2011 8:58:11 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-21 Eunsol Park <eunsol47.park@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Scroll doesn't work on tiled backing store.
https://bugs.webkit.org/show_bug.cgi?id=55021

It was added from Changeset 72242, but it worked wrong in EFL port.
The visible rect should not be returned as content rect for scrolling in EFL tiled backing store,
because it works differently from QT.

  • platform/ScrollView.cpp: (WebCore::ScrollView::visibleContentRect):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r84504 r84505  
     12011-04-21  Eunsol Park  <eunsol47.park@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Scroll doesn't work on tiled backing store.
     6        https://bugs.webkit.org/show_bug.cgi?id=55021
     7
     8        It was added from Changeset 72242, but it worked wrong in EFL port.
     9        The visible rect should not be returned as content rect for scrolling in EFL tiled backing store,
     10        because it works differently from QT.
     11
     12        * platform/ScrollView.cpp:
     13        (WebCore::ScrollView::visibleContentRect):
     14
    1152011-04-21  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/Source/WebCore/platform/ScrollView.cpp

    r84504 r84505  
    233233        return platformVisibleContentRect(includeScrollbars);
    234234
     235#if !PLATFORM(EFL)
    235236    if (paintsEntireContents())
    236237        return IntRect(IntPoint(0, 0), contentsSize());
     238#endif
    237239
    238240    int verticalScrollbarWidth = verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar()
Note: See TracChangeset for help on using the changeset viewer.