Changeset 179891 in webkit
- Timestamp:
- Feb 10, 2015, 3:42:41 PM (12 years ago)
- Location:
- branches/safari-600.1.4.15-branch/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
page/FrameView.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-600.1.4.15-branch/Source/WebCore/ChangeLog
r179735 r179891 1 2015-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 1 22 2015-02-05 Lucas Forschler <lforschler@apple.com> 2 23 -
branches/safari-600.1.4.15-branch/Source/WebCore/page/FrameView.cpp
r179678 r179891 183 183 , m_useCustomFixedPositionLayoutRect(false) 184 184 , m_useCustomSizeForResizeEvent(false) 185 , m_horizontalVelocity(0) 186 , m_verticalVelocity(0) 187 , m_scaleChangeRate(0) 188 , m_lastVelocityUpdateTime(0) 185 189 #endif 186 190 , m_hasOverrideViewportSize(false)
Note:
See TracChangeset
for help on using the changeset viewer.