Changeset 171163 in webkit
- Timestamp:
- Jul 16, 2014, 6:10:22 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r171162 r171163 1 2014-07-16 Simon Fraser <simon.fraser@apple.com> 2 3 Fix a typo noticed by Darin. 4 5 * rendering/RenderBox.cpp: 6 (WebCore::shouldApplyContainersClipAndOffset): 7 (WebCore::RenderBox::computeRectForRepaint): 8 (WebCore::shouldAppyContainersClipAndOffset): Deleted. 9 1 10 2014-07-16 Simon Fraser <simon.fraser@apple.com> 2 11 -
trunk/Source/WebCore/rendering/RenderBox.cpp
r171133 r171163 2111 2111 } 2112 2112 2113 static inline bool shouldApp yContainersClipAndOffset(const RenderLayerModelObject* repaintContainer, RenderBox* containerBox)2113 static inline bool shouldApplyContainersClipAndOffset(const RenderLayerModelObject* repaintContainer, RenderBox* containerBox) 2114 2114 { 2115 2115 #if PLATFORM(IOS) … … 2215 2215 if (o->hasOverflowClip()) { 2216 2216 RenderBox* containerBox = toRenderBox(o); 2217 if (shouldApp yContainersClipAndOffset(repaintContainer, containerBox)) {2217 if (shouldApplyContainersClipAndOffset(repaintContainer, containerBox)) { 2218 2218 containerBox->applyCachedClipAndScrollOffsetForRepaint(rect); 2219 2219 if (rect.isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.