⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 179891 in webkit


Ignore:
Timestamp:
Feb 10, 2015, 3:42:41 PM (12 years ago)
Author:
bshafiei@apple.com
Message:

Merged r176240. rdar://problem/19670909

Location:
branches/safari-600.1.4.15-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-600.1.4.15-branch/Source/WebCore/ChangeLog

    r179735 r179891  
     12015-02-10  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Merge r176240.
     4
     5    2014-11-17  Simon Fraser  <simon.fraser@apple.com>
     6
     7            [iOS WK1] Sometimes, missing tiles in -webkit-overflow-scrolling: touch in UIWebViews
     8            https://bugs.webkit.org/show_bug.cgi?id=138815
     9            rdar://problem/18746203
     10
     11            Reviewed by Tim Horton.
     12
     13            The scroll-velocity-related data members on FrameView, added in r168233, were uninitialized in UIWebViews,
     14            so FrameView::computeCoverageRect() could return garbage results, leading to too much or too little tile coverage.
     15
     16            We still add additional coverage from the new inclusion of a margin area, but, for simplicity, leave that the same
     17            between WK1 and WK2 for now.
     18
     19            * page/FrameView.cpp:
     20            (WebCore::FrameView::FrameView):
     21
    1222015-02-05  Lucas Forschler  <lforschler@apple.com>
    223
  • branches/safari-600.1.4.15-branch/Source/WebCore/page/FrameView.cpp

    r179678 r179891  
    183183    , m_useCustomFixedPositionLayoutRect(false)
    184184    , m_useCustomSizeForResizeEvent(false)
     185    , m_horizontalVelocity(0)
     186    , m_verticalVelocity(0)
     187    , m_scaleChangeRate(0)
     188    , m_lastVelocityUpdateTime(0)
    185189#endif
    186190    , m_hasOverrideViewportSize(false)
Note: See TracChangeset for help on using the changeset viewer.