Changeset 171163 in webkit


Ignore:
Timestamp:
Jul 16, 2014, 6:10:22 PM (11 years ago)
Author:
Simon Fraser
Message:

Fix a typo noticed by Darin.

  • rendering/RenderBox.cpp:

(WebCore::shouldApplyContainersClipAndOffset):
(WebCore::RenderBox::computeRectForRepaint):
(WebCore::shouldAppyContainersClipAndOffset): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r171162 r171163  
     12014-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
    1102014-07-16  Simon Fraser  <simon.fraser@apple.com>
    211
  • trunk/Source/WebCore/rendering/RenderBox.cpp

    r171133 r171163  
    21112111}
    21122112
    2113 static inline bool shouldAppyContainersClipAndOffset(const RenderLayerModelObject* repaintContainer, RenderBox* containerBox)
     2113static inline bool shouldApplyContainersClipAndOffset(const RenderLayerModelObject* repaintContainer, RenderBox* containerBox)
    21142114{
    21152115#if PLATFORM(IOS)
     
    22152215    if (o->hasOverflowClip()) {
    22162216        RenderBox* containerBox = toRenderBox(o);
    2217         if (shouldAppyContainersClipAndOffset(repaintContainer, containerBox)) {
     2217        if (shouldApplyContainersClipAndOffset(repaintContainer, containerBox)) {
    22182218            containerBox->applyCachedClipAndScrollOffsetForRepaint(rect);
    22192219            if (rect.isEmpty())
Note: See TracChangeset for help on using the changeset viewer.